UI: complete redesign — warm atelier style, Manrope font, burnt orange accent, shadow-based cards

This commit is contained in:
2026-05-29 13:34:58 +03:00
parent 7fa7394739
commit 4bf9ea22dd
20 changed files with 493 additions and 496 deletions

View File

@@ -8,11 +8,11 @@ export default function ProtectedRoute({ children }: { children: React.ReactNode
if (isLoading) {
return (
<div className="flex h-screen items-center justify-center bg-[var(--bg)]">
<div className="flex flex-col items-center gap-4">
<div className="h-14 w-14 rounded-full flex items-center justify-center" style={{ background: 'linear-gradient(135deg, #007aff, #5856d6)' }}>
<div className="flex flex-col items-center gap-5">
<div className="h-14 w-14 rounded-2xl flex items-center justify-center bg-[var(--accent)]">
<Cat className="h-7 w-7 text-white" strokeWidth={1.5} />
</div>
<div className="h-6 w-6 rounded-full border-2 border-[var(--primary)]/30 border-t-[var(--primary)] animate-spin" />
<div className="h-5 w-5 rounded-full border-2 border-[var(--border)] border-t-[var(--accent)] animate-spin" />
</div>
</div>
);