"use client" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { Skeleton } from "@/components/ui/skeleton"; import Layout from "@/components/layout/layout"; import { Loader2 } from "lucide-react"; export default function DashboardLoading() { return (
{/* Header skeleton with greeting & quote */}
{/* Order statistics skeletons */}
{[...Array(4)].map((_, i) => (
))}
{/* Best selling products skeleton */}

Loading dashboard data...

{[...Array(5)].map((_, i) => (
))}
); }