Reverted all changes back to version 0d5065da81

This commit is contained in:
[dyad]
2026-01-20 12:14:34 +01:00
parent 93a004d437
commit 499d14cf5b
2 changed files with 37 additions and 4 deletions

View File

@@ -0,0 +1,30 @@
import { Card, CardContent, CardHeader } from "@/components/ui/card";
import { Skeleton } from "@/components/ui/skeleton";
export function ResultsSkeleton() {
return (
<Card className="w-full shadow-lg rounded-lg">
<CardHeader>
<Skeleton className="h-6 w-48" />
</CardHeader>
<CardContent className="space-y-6">
<div>
<Skeleton className="h-5 w-32 mb-2" />
<Skeleton className="aspect-video w-full rounded-md" />
</div>
<div>
<div className="flex items-center justify-between mb-1">
<Skeleton className="h-5 w-24" />
</div>
<Skeleton className="h-12 w-full" />
</div>
<div>
<div className="flex items-center justify-between mb-1">
<Skeleton className="h-5 w-36" />
</div>
<Skeleton className="h-20 w-full" />
</div>
</CardContent>
</Card>
);
}