Components
Loading preview...
This "Digital Petals" shader generates a field of bio-luminescent, procedurally generated flora. The animation is interactive, causing the petals to bloom and ripple outwards in response to your mouse movements, creating an ethereal and organic digital garden.
@dhiluxui
npx shadcn@latest add https://21st.dev/r/dhileepkumargm/digital-petals-shaderimport DigitalPetalsShader from "@/components/ui/digital-petals-shader";
export default function DemoOne() {
return <div className="app-container">
<DigitalPetalsShader />
<div className="overlay-content">
<h1 className="title">Digital Petals</h1>
<p className="description">An Interactive WebGL Shader</p>
</div>
</div>
}