A 3-column grid of square tiles used as a loading placeholder for an image gallery.
import { Skeleton13 } from "@/components/ui/skeleton-13"; export default function DemoSkeleton13() { return ( <div className="flex min-h-svh w-full items-center justify-center bg-background p-8"> <div className="w-full max-w-sm rounded-xl border border-border bg-card p-4 shadow-sm"> <div className="mb-3 flex items-center justify-between"> <div className="text-sm font-medium text-foreground">Gallery</div> <div className="text-xs text-muted-foreground">Loading…</div> </div> <Skeleton13 /> </div> </div> ); }