23 lines
835 B
TypeScript
23 lines
835 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { DashboardHeader } from "@/components/dashboard/header";
|
|
|
|
export default function AdminPanelLoading() {
|
|
return (
|
|
<>
|
|
<DashboardHeader heading="Admin Panel" text="" />
|
|
<div className="flex flex-col gap-5">
|
|
<div className="grid grid-cols-1 gap-4 sm:grid-cols-3 lg:grid-cols-3">
|
|
<Skeleton className="h-32 w-full rounded-lg" />
|
|
<Skeleton className="h-32 w-full rounded-lg" />
|
|
<Skeleton className="h-32 w-full rounded-lg" />
|
|
</div>
|
|
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
|
<Skeleton className="h-32 w-full rounded-lg" />
|
|
<Skeleton className="h-32 w-full rounded-lg" />
|
|
</div>
|
|
<Skeleton className="h-[400px] w-full rounded-lg" />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|