21 lines
680 B
TypeScript
21 lines
680 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
export default function DashboardLoading() {
|
|
return (
|
|
<div className="p-8 max-w-4xl mx-auto space-y-8 animate-in fade-in duration-500">
|
|
<div>
|
|
<Skeleton className="h-8 w-64 mb-2" />
|
|
<Skeleton className="h-4 w-96" />
|
|
</div>
|
|
|
|
<div className="space-y-4">
|
|
<Skeleton className="h-6 w-32" />
|
|
<div className="bg-card border border-border rounded-lg overflow-hidden shadow-sm p-4 space-y-4">
|
|
<Skeleton className="h-24 w-full" />
|
|
<Skeleton className="h-24 w-full" />
|
|
<Skeleton className="h-24 w-full" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|