Components
A fluid grid that expands items with smooth motion animations.
Loading preview...
"use client";
import FluidExpandingGrid from "@/components/ui/fluid-expanding-grid";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<FluidExpandingGrid />
</div>
);
}