File size: 690 Bytes
1034ef4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | export default function Loading() {
return (
<div className="min-h-screen bg-white text-zinc-900">
<div className="mx-auto flex max-w-3xl items-center justify-center px-4 py-20">
<div className="w-full rounded-2xl border border-zinc-200 bg-white p-6 shadow-sm">
<div className="h-4 w-40 animate-pulse rounded bg-zinc-200" />
<div className="mt-4 space-y-2">
<div className="h-3 w-full animate-pulse rounded bg-zinc-200" />
<div className="h-3 w-5/6 animate-pulse rounded bg-zinc-200" />
<div className="h-3 w-2/3 animate-pulse rounded bg-zinc-200" />
</div>
</div>
</div>
</div>
)
}
|