import { Skeleton } from '@/components/ui/skeleton'; import { CardSkeleton } from '@/components/shared/loading-skeleton'; /** * Route-level loading UI for the client detail page. Renders while the * server component resolves the session and the client component bootstraps * its initial query — replaces the previous empty-header flash on direct * URL visits. */ export default function Loading() { return (
{/* Header strip — title, badges, action buttons */}
{/* Tab strip */}
{Array.from({ length: 8 }).map((_, i) => ( ))}
{/* Two-column overview */}
); }