Components
Loading preview...
A mesmerizing WebGL shader component that creates an animated cosmic plasma web with interconnected energy nodes, flowing particles, and organic movement. Built with OGL and React, featuring smooth mouse interactions, customizable colors, and multiple visual layers for depth.
@shailendrakumar19999
npx shadcn@latest add https://21st.dev/r/shailendrakumar19999/cosmic-plasma-webimport { PlasmaWeb } from "@/components/ui/cosmic-plasma-web";
export default function DemoOne() {
return <div className="w-full h-screen bg-black">
<PlasmaWeb
hueShift={200}
density={1.2}
glowIntensity={1.0}
saturation={0.8}
brightness={0.7}
energyFlow={1.2}
pulseIntensity={0.3}
attractionStrength={2.0}
mouseAttraction={true}
transparent={false}
/>
</div>
}