Files
users/app/content/[id]/materials/loading.tsx
v0 2408d50cb0 refactor: overhaul UI for streamlined user experience
Redesign navigation, home overview, user portrait, and valuation pages
with improved functionality and responsive design.

Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
2025-07-18 13:47:12 +00:00

43 lines
1.5 KiB
TypeScript

import { Skeleton } from "@/components/ui/skeleton"
import { Card, CardContent, CardHeader } from "@/components/ui/card"
export default function Loading() {
return (
<div className="container mx-auto py-6 space-y-6">
<div className="flex justify-between items-center">
<Skeleton className="h-10 w-64" />
<Skeleton className="h-10 w-32" />
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{Array(6)
.fill(0)
.map((_, i) => (
<Card key={i} className="overflow-hidden">
<CardHeader className="pb-2">
<div className="flex justify-between items-start">
<Skeleton className="h-6 w-40" />
<Skeleton className="h-6 w-20" />
</div>
</CardHeader>
<CardContent className="space-y-4">
<Skeleton className="h-40 w-full" />
<div className="flex justify-between items-center">
<Skeleton className="h-5 w-24" />
<div className="flex space-x-2">
<Skeleton className="h-8 w-8 rounded-full" />
<Skeleton className="h-8 w-8 rounded-full" />
</div>
</div>
</CardContent>
</Card>
))}
</div>
<div className="flex justify-center mt-6">
<Skeleton className="h-10 w-64" />
</div>
</div>
)
}