import { RouteLoading } from "@/components/molecules/RouteLoading"; import { Server } from "lucide-react"; import { Skeleton } from "@/components/atoms/loading-skeleton"; export default function AccountServicesLoading() { return ( } title="Services" description="View and manage your services" mode="content" >
{/* Stats Cards */}
{Array.from({ length: 3 }).map((_, i) => (
))}
{/* Search and Table */}
{/* Custom Table Skeleton to match embedded style */}
{Array.from({ length: 5 }).map((_, i) => ( ))}
{Array.from({ length: 5 }).map((_, rowIndex) => (
{Array.from({ length: 5 }).map((_, colIndex) => ( ))}
))}
); }