Components
Loading preview...
import { GradientBackground } from "@/components/ui/fluid-gradient-background";
export default function DemoOne() {
return (
<main className="relative w-full h-screen overflow-hidden">
<GradientBackground />
<div className="relative z-10 flex items-center justify-center h-full">
<div className="text-center">
<h1 className="text-6xl font-bold text-white mb-4">Fluid Gradient</h1>
<p className="text-xl text-white/90">Animated Three.js Background</p>
</div>
</div>
</main>
)
}