3v324v23's picture
初始化:2FA/TOTP 全闭环(中文)
1034ef4
Raw
History Blame Contribute Delete
690 Bytes
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>
)
}