Files
myeasycms-v2/apps/web/app/[locale]/home/[account]/loading.tsx
T. Zehetbauer c6d564836f
Some checks failed
Workflow / ʦ TypeScript (push) Failing after 17m4s
Workflow / ⚫️ Test (push) Has been skipped
fix: add missing newlines at the end of JSON files; clean up formatting in page components
2026-04-02 11:02:58 +02:00

22 lines
649 B
TypeScript

import { PageBody } from '@kit/ui/page';
export default function AccountLoading() {
return (
<PageBody>
<div className="flex animate-pulse flex-col gap-6">
<div className="bg-muted h-8 w-48 rounded-md" />
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
{[1, 2, 3, 4].map((i) => (
<div key={i} className="bg-muted h-24 rounded-lg" />
))}
</div>
<div className="space-y-2">
{[1, 2, 3, 4, 5, 6].map((i) => (
<div key={i} className="bg-muted h-12 w-full rounded" />
))}
</div>
</div>
</PageBody>
);
}