From 479c3d93e47ace11945c58a53be872b8db6990dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 14 Jun 2026 21:46:33 +0200 Subject: [PATCH] fix: constrain nav and footer content to max-w-[1200px] like main content Nav keeps full-width background; inner content wrapped in max-w-[1200px] mx-auto px-7 container to align with page content width. Co-Authored-By: Claude Sonnet 4.6 --- app/layout.tsx | 14 ++++++++------ components/nav.tsx | 4 +++- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index abe0fee..4458639 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -28,12 +28,14 @@ export default function RootLayout({ children }: { children: React.ReactNode })