A full-screen React component that uses three.js and a custom GLSL fragment shader to render a continuously scrolling, glowing grid animation.
import { ScrollingGridShader } from "@/components/ui/grid-shader"; export default function Demo() { return ( <div className="h-screen w-screen"> <ScrollingGridShader /> </div> ); }