A dynamic, animated WebGL shader that simulates the turbulent, glowing surface of Bloom . Built with React and Three.js.
import CelestialBloomShader from "@/components/ui/celestial-bloom-shader"; const settings = {}; export default function Demo(props: Partial<typeof settings>) { const s = { ...settings, ...props }; return ( <div className="h-screen w-screen"> <CelestialBloomShader {...s} /> </div> ); }