feat(settings): restructure settings layout and separate route modules

This commit is contained in:
poyrazavsever
2026-07-20 10:25:40 +03:00
parent cc22c8ee1d
commit b424385667
34 changed files with 2867 additions and 1691 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Card, CardContent } from "poyraz-ui/atoms";
export default function SettingsLoading() {
return (
<Card aria-busy="true">
<CardContent className="space-y-4 p-6 sm:p-8">
<div className="h-7 w-48 animate-pulse rounded-md bg-muted" />
<div className="h-11 w-full animate-pulse rounded-md bg-muted" />
<div className="h-32 w-full animate-pulse rounded-md bg-muted" />
</CardContent>
</Card>
);
}