Components
Loading preview...
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.
npx shadcn@latest add https://21st.dev/r/minhxthanh/shader-background// This is file with demos of your component
// Each export is one usecase for your component
import ShaderBackground from "@/components/ui/shader-background";
const DemoOne = () => {
return <ShaderBackground />;
};
export { DemoOne };