Components
animation logic, rendering circles with colors and sizes based on 3D simplex noise
Loading preview...
import { NoiseAnimation } from "@/components/ui/noise-animation";
export default function DemoOne() {
return (
<div className="relative flex h-screen bg-black w-full flex-col items-center justify-center overflow-hidden">
<NoiseAnimation/>
<span className="pointer-events-none z-10 text-center text-7xl leading-none font-semibold tracking-tighter whitespace-pre-wrap text-white">
Noise Animation
</span>
</div>
)
}