export function SkeletonDashboard() { return (
{/* Sidebar Skeleton */}
{/* Logo area */}
{/* Navigation items */}
{[ 'Dashboard', 'Analytics', 'Reports', 'Settings', 'Users', 'Projects', ].map((item, i) => (
))}
{/* Project section */}
{['Project Alpha', 'Project Beta', 'Project Gamma'].map( (project, i) => (
), )}
{/* Main content area skeleton */}
{/* Header area */}
{/* Dashboard grid */}
{[ 'Total Users', 'Active Sessions', 'Page Views', 'Bounce Rate', 'Conversion', 'Revenue', ].map((metric, i) => (
))}
{/* Chart area */}
{['Desktop', 'Mobile', 'Tablet', 'Other'].map((device, i) => (
))}
{[ 'John Doe', 'Jane Smith', 'Bob Johnson', 'Alice Brown', 'Charlie Wilson', ].map((user, i) => (
))}
); }