Components
Loading preview...
Neural Noise background
npx shadcn@latest add https://21st.dev/r/designali-in/neural-noiseimport { NeuralNoise } from "@/components/ui/neural-noise";
export default function DemoOne() {
return (
<div className="relative flex h-full w-full flex-col items-center justify-center overflow-hidden">
<NeuralNoise />
<span className="pointer-events-none asbolute z-10 text-center text-7xl leading-none font-semibold tracking-tighter whitespace-pre-wrap text-rose-500">
Neural Noise
</span>
</div>
)
}