Components
Loading preview...
A fluid grid that expands items with smooth motion animations.
npx shadcn@latest add https://21st.dev/r/0xUrvish/fluid-expanding-grid"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>
);
}