Fluid by nature
Move your cursor to stir the goo.
Liquid Metaballs
tsx
import { LiquidMetaballs } from "@/components/godui/liquid-metaballs";export function LiquidMetaballsDemo() {return ( <div className="relative flex h-[360px] w-full items-center justify-center overflow-hidden rounded-xl border border-border bg-background"> <LiquidMetaballs /> <div className="relative z-raised text-center"> <h2 className="font-semibold text-3xl tracking-tight">Fluid by nature</h2> <p className="mt-2 text-muted-foreground">Move your cursor to stir the goo.</p> </div> </div>);}