style: narrow content column to max-w-3xl for centered layout

This commit is contained in:
lerko96
2026-04-12 19:33:40 -04:00
parent 088a06a51c
commit bf0910a8fe
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ export default function Nav() {
const pathname = usePathname();
return (
<header className="sticky top-0 z-50 bg-[var(--color-surface)] border-b border-[var(--color-border)]">
<nav className="max-w-5xl mx-auto px-6 h-11 flex items-center justify-between">
<nav className="max-w-3xl mx-auto px-6 h-11 flex items-center justify-between">
<Link
href="/"
className="font-mono text-sm font-bold text-[var(--color-text)] tracking-widest hover:text-[var(--color-text-label)]"