13 lines
456 B
TypeScript
13 lines
456 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<div className="max-w-7xl mx-auto px-4 py-6">
|
|
<div className="h-7 w-40 bg-surface rounded-lg animate-pulse mb-4" />
|
|
<div className="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-5 lg:grid-cols-6 gap-3 sm:gap-4">
|
|
{Array.from({ length: 12 }).map((_, i) => (
|
|
<div key={i} className="aspect-[3/4] rounded-xl bg-surface animate-pulse" />
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|