Component that renders a full-screen WebGL canvas behind all other content. It compiles and executes custom vertex and fragment shaders to create an animated purple-blue plasma grid effect.
// This is file with demos of your component// Each export is one usecase for your componentimport ShaderBackground from "@/components/ui/shader-background";const DemoOne = () => { return <ShaderBackground />;};export { DemoOne };