43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { Skeleton } from "@/components/ui/skeleton"
|
|
import { Card } from "@/components/ui/card"
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex-1 bg-gray-50 min-h-screen p-4">
|
|
<div className="max-w-4xl mx-auto">
|
|
<div className="flex items-center space-x-4 mb-6">
|
|
<Skeleton className="h-10 w-10 rounded-full" />
|
|
<Skeleton className="h-6 w-40" />
|
|
</div>
|
|
|
|
<div className="flex justify-between items-center mb-6">
|
|
<div className="flex space-x-4">
|
|
<Skeleton className="h-8 w-8 rounded-full" />
|
|
<Skeleton className="h-8 w-8 rounded-full" />
|
|
<Skeleton className="h-8 w-8 rounded-full" />
|
|
</div>
|
|
</div>
|
|
|
|
<Card className="p-6">
|
|
<Skeleton className="h-6 w-40 mb-4" />
|
|
<Skeleton className="h-10 w-full mb-4" />
|
|
<Skeleton className="h-10 w-full mb-4" />
|
|
<Skeleton className="h-10 w-full mb-4" />
|
|
<Skeleton className="h-10 w-full mb-4" />
|
|
<div className="flex flex-wrap gap-2 mb-4">
|
|
<Skeleton className="h-8 w-20" />
|
|
<Skeleton className="h-8 w-24" />
|
|
<Skeleton className="h-8 w-16" />
|
|
</div>
|
|
<Skeleton className="h-10 w-full" />
|
|
</Card>
|
|
|
|
<div className="flex justify-between mt-6">
|
|
<Skeleton className="h-10 w-24" />
|
|
<Skeleton className="h-10 w-24" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|