import { SectionCardsSkeleton } from "./section-cards-skeleton"; import { WidgetSkeleton } from "./widget-skeleton"; /** * Skeleton completo para o dashboard grid * Mantém a mesma estrutura de layout do dashboard real */ export function DashboardGridSkeleton() { return (
{/* Section Cards no topo */} {/* Grid de widgets - mesmos breakpoints do dashboard real */}
{Array.from({ length: 9 }).map((_, i) => ( ))}
); }