Files
2025-06-17 19:46:43 +08:00

20 lines
524 B
TypeScript

import { DashboardHeader } from "@/components/dashboard/header";
import { SkeletonSection } from "@/components/shared/section-skeleton";
export default function DashboardSettingsLoading() {
return (
<>
<DashboardHeader
heading="Account Settings"
text="Manage account and website settings"
/>
<div className="divide-y divide-muted pb-10">
<SkeletonSection />
<SkeletonSection />
<SkeletonSection />
<SkeletonSection card />
</div>
</>
);
}