import { Card, CardHeader, CardContent } from '@/components/ui/card'; import { Skeleton } from '@/components/ui/skeleton'; export function QueueItemSkeleton({ index = 0 }: { index?: number }) { return (
{/* Left side: Entity type badge + title */}
{/* Badge */} {/* Title */}
{/* Avatar */} {/* Username */} {/* Date */}
{/* Right side: Status badge */}
{/* Content area */}
{/* Action buttons */}
); }