it's a WebGL-based fluid simulation with interactive mouse/touch controls and morphing effects.
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> ) }