profileShare

rasmusjy / roundtable

Read-only snapshot

No repository description.

main default branch 181 files Expires Sep 13, 2026, 9:06 AM
debate-skeleton.tsx 585 bytes
1 import { Skeleton } from '@/components/ui/skeleton';
2
3 /** Placeholder for a debate console while its data loads. */
4 export function DebateSkeleton() {
5 return (
6 <div className="space-y-6">
7 <div className="space-y-3">
8 <Skeleton className="h-5 w-28" />
9 <Skeleton className="h-8 w-3/4" />
10 <Skeleton className="h-12 w-full" />
11 </div>
12 <div className="grid gap-4 md:grid-cols-2 xl:grid-cols-3">
13 {Array.from({ length: 3 }).map((_, i) => (
14 <Skeleton key={i} className="h-48 w-full" />
15 ))}
16 </div>
17 </div>
18 );
19 }
20