feat: improve loaders and styles

This commit is contained in:
Vasily Zubarev
2025-03-24 19:52:09 +01:00
parent df2d646a47
commit a80684c3fb
8 changed files with 143 additions and 12 deletions

10
app/settings/loading.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { Skeleton } from "@/components/ui/skeleton"
export default function Loading() {
return (
<div className="flex flex-col gap-4 w-full">
<Skeleton className="h-10 w-56" />
<Skeleton className="w-full h-[350px]" />
</div>
)
}