Components
Design Meets Innovation We create fluid, intuitive, and visually stunning digital experiences that define the future.
Loading preview...
import ThreeScene from "@/components/ui/design-meets-innovation";
export default function DemoOne() {
return (
<div className="relative w-full h-[500px] bg-black">
{/* Light‐mode theme */}
<ThreeScene
color1={[0.1, 0.2, 0.8]}
color2={[0.8, 0.1, 0.5]}
/>
{/* Dark‐mode overlay example */}
<div className="absolute inset-0 mix-blend-overlay" />
</div>
)
}