11 lines
428 B
TypeScript
11 lines
428 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<div className="mx-auto max-w-7xl animate-pulse space-y-8 px-4 py-10" aria-label="Cargando tienda">
|
|
<div className="h-[420px] rounded-[2rem] bg-slate-100" />
|
|
<div className="grid gap-5 sm:grid-cols-2 lg:grid-cols-4">
|
|
{Array.from({ length: 4 }).map((_, index) => <div key={index} className="h-96 rounded-3xl bg-slate-100" />)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|