Redesign UI shell with collapsible sidebar and SaaS design system#2
Redesign UI shell with collapsible sidebar and SaaS design system#2xifel wants to merge 2 commits into
Conversation
Replaces top navigation with a collapsible left sidebar (expanded ~240px / collapsed ~64px), adds bottom-anchored profile and locale switcher, and introduces a CSS custom property design token system. Includes architecture docs page and redesign skill references.
|
@claude why so slow?! |
|
Claude finished @xifel's task in 2m 18s —— View job Why it feels slowTwo real culprits in this PR, plus one to keep an eye on. 1. Render-blocking Google Fonts (biggest hit on first paint)
Fix: either self-host (Vite + <link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&display=swap"
onload="this.rel='stylesheet'">And drop weights you don't actually use — 400 + 600 + 700 is plenty for this UI; 500 in both families is unused as far as I can see. 2. Animating
|
Replaces top nav with collapsible sidebar, adds design token system, architecture docs page, and redesign skill references.