import { Card, CardContent, CardHeader } from "@/components/ui/card"; import { Skeleton } from "@/components/ui/skeleton"; export default function Loading() { return (
{/* MonthNavigation skeleton */} {/* Summary stats */}
{[1, 2, 3, 4].map((i) => ( ))}
{/* Cards grid */}
{[1, 2, 3, 4].map((i) => ( ))}
{/* CardUsageChart */}
{/* CategoryBreakdown + TopExpenses */}
{[1, 2, 3, 4].map((i) => ( ))} {[1, 2, 3, 4].map((i) => ( ))}
{/* CardInvoiceStatus - timeline minimalista */}
{[1, 2, 3, 4, 5, 6].map((i) => (
))}
); }