From 0d03156e04bc78fdc4cfff3d68623a13a4a68a99 Mon Sep 17 00:00:00 2001 From: valknarness Date: Fri, 7 Nov 2025 16:20:59 +0100 Subject: [PATCH] style: standardize layout widths and padding across all pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ensure consistent spacing and alignment between header, main content, and footer: - Update Navbar to use max-w-7xl and px-8 (matching Footer) - Standardize all page containers to use px-8 py-12 padding - Change home page from max-w-5xl to max-w-7xl for consistency - Update all 12 pages to use consistent padding (px-8 py-12 instead of p-8) This creates a unified visual alignment across the entire application, with all content sections (navbar, main, footer) using the same max-width (7xl) and horizontal padding (px-8). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/accessibility/colorblind/page.tsx | 2 +- app/accessibility/contrast/page.tsx | 2 +- app/accessibility/page.tsx | 2 +- app/accessibility/textcolor/page.tsx | 2 +- app/batch/page.tsx | 2 +- app/names/page.tsx | 2 +- app/page.tsx | 4 ++-- app/palettes/distinct/page.tsx | 2 +- app/palettes/gradient/page.tsx | 2 +- app/palettes/harmony/page.tsx | 2 +- app/palettes/page.tsx | 2 +- app/playground/page.tsx | 4 ++-- components/layout/Navbar.tsx | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/app/accessibility/colorblind/page.tsx b/app/accessibility/colorblind/page.tsx index 2b644a0..5ae0290 100644 --- a/app/accessibility/colorblind/page.tsx +++ b/app/accessibility/colorblind/page.tsx @@ -59,7 +59,7 @@ export default function ColorBlindPage() { }; return ( -
+

Color Blindness Simulator

diff --git a/app/accessibility/contrast/page.tsx b/app/accessibility/contrast/page.tsx index a70126e..483487d 100644 --- a/app/accessibility/contrast/page.tsx +++ b/app/accessibility/contrast/page.tsx @@ -56,7 +56,7 @@ export default function ContrastPage() { ); return ( -
+

Contrast Checker

diff --git a/app/accessibility/page.tsx b/app/accessibility/page.tsx index 34f1956..7e13bd4 100644 --- a/app/accessibility/page.tsx +++ b/app/accessibility/page.tsx @@ -27,7 +27,7 @@ export default function AccessibilityPage() { ]; return ( -
+

Accessibility Tools

diff --git a/app/accessibility/textcolor/page.tsx b/app/accessibility/textcolor/page.tsx index b7886da..fb464c5 100644 --- a/app/accessibility/textcolor/page.tsx +++ b/app/accessibility/textcolor/page.tsx @@ -54,7 +54,7 @@ export default function TextColorPage() { }; return ( -
+

Text Color Optimizer

diff --git a/app/batch/page.tsx b/app/batch/page.tsx index 607982e..659dda2 100644 --- a/app/batch/page.tsx +++ b/app/batch/page.tsx @@ -84,7 +84,7 @@ export default function BatchPage() { rotateMutation.isPending; return ( -
+

Batch Operations

diff --git a/app/names/page.tsx b/app/names/page.tsx index 1a411b6..f014a0e 100644 --- a/app/names/page.tsx +++ b/app/names/page.tsx @@ -32,7 +32,7 @@ export default function NamedColorsPage() { }, [data, search, sortBy]); return ( -
+

Named Colors

diff --git a/app/page.tsx b/app/page.tsx index af27a83..228f332 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,7 +1,7 @@ export default function Home() { return ( -
-
+
+

Pastel UI

diff --git a/app/palettes/distinct/page.tsx b/app/palettes/distinct/page.tsx index 5a2c483..7657f45 100644 --- a/app/palettes/distinct/page.tsx +++ b/app/palettes/distinct/page.tsx @@ -37,7 +37,7 @@ export default function DistinctPage() { }; return ( -
+

Distinct Colors Generator

diff --git a/app/palettes/gradient/page.tsx b/app/palettes/gradient/page.tsx index 008dc4f..f58a2d3 100644 --- a/app/palettes/gradient/page.tsx +++ b/app/palettes/gradient/page.tsx @@ -52,7 +52,7 @@ export default function GradientPage() { }; return ( -
+

Gradient Creator

diff --git a/app/palettes/harmony/page.tsx b/app/palettes/harmony/page.tsx index 67d156d..1ac169c 100644 --- a/app/palettes/harmony/page.tsx +++ b/app/palettes/harmony/page.tsx @@ -52,7 +52,7 @@ export default function HarmonyPage() { }; return ( -
+

Harmony Palette Generator

diff --git a/app/palettes/page.tsx b/app/palettes/page.tsx index d267d59..0992dd0 100644 --- a/app/palettes/page.tsx +++ b/app/palettes/page.tsx @@ -27,7 +27,7 @@ export default function PalettesPage() { ]; return ( -
+

Palette Generation

diff --git a/app/playground/page.tsx b/app/playground/page.tsx index 75889b4..6834348 100644 --- a/app/playground/page.tsx +++ b/app/playground/page.tsx @@ -81,7 +81,7 @@ function PlaygroundContent() { ]); return ( -
+

Color Playground

@@ -206,7 +206,7 @@ function PlaygroundContent() { export default function PlaygroundPage() { return ( +
diff --git a/components/layout/Navbar.tsx b/components/layout/Navbar.tsx index 2eb471b..3b1e864 100644 --- a/components/layout/Navbar.tsx +++ b/components/layout/Navbar.tsx @@ -20,7 +20,7 @@ export function Navbar() { return (