Components
Loading preview...
A gallery component with expandable image items.
npx shadcn@latest add https://21st.dev/r/0xUrvish/expandable-gallery"use client";
import ExpandableGallery from "@/components/ui/expandable-gallery";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<ExpandableGallery />
</div>
);
}