Animated WebGL2 plasma effect with cosine palette color cycling. GPU-rendered retro demoscene plasma — zero dependencies, pure React + GLSL. Props: speed (animation multiplier).
import PlasmaShader from "@/components/ui/plasma-shader"; export default function PlasmaShaderDemo() { return ( <div style={{ width: "100%", height: "400px", borderRadius: "12px", overflow: "hidden", background: "#000" }}> <PlasmaShader speed={1} /> </div> ); }