Components
it's a WebGL-based fluid simulation with interactive mouse/touch controls and morphing effects.
npx shadcn@latest add https://21st.dev/r/designali-in/fluid-animationLoading preview...
import { FluidAnimation } from "@/components/ui/fluid-animation";
export default function DemoOne() {
return (
<div className="relative flex h-auto w-full flex-col items-center justify-center overflow-hidden">
<FluidAnimation/>
<span className="pointer-events-none absolute z-10 text-center text-7xl leading-none font-semibold tracking-tighter whitespace-pre-wrap text-white">
Fluid Animation
</span>
</div>
)
}