Components
Loading preview...
import { MatrixNoise } from "@/components/ui/matrix-noise";
export default function DemoOne() {
return (
<div className="flex flex-col items-center justify-center h-screen relative w-full">
<MatrixNoise />
<h1 className="text-4xl absolute font-bold">Matrix Noise</h1>
</div>
);
}