From 69bcbbb594c68bdbb5ee023ddd237bb6e41d53b7 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 11 Oct 2025 07:37:37 +0000 Subject: [PATCH] feat: remove bottom padding from landing page sections MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change all sections from py (vertical padding) to pt/pb split - Set pb (bottom padding) to 0 for all sections - Keep pt (top padding) at original values (xs: 10-12, md: 16-20) - Removes 128px bottom spacing on desktop (md breakpoint) - Creates tighter, more cohesive visual flow between sections 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/[locale]/page.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index 87cefc9..555a70d 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -75,7 +75,8 @@ export default function Home() { sx={{ background: 'linear-gradient(135deg, #009688 0%, #00796B 100%)', color: 'white', - py: { xs: 12, md: 20 }, + pt: { xs: 12, md: 20 }, + pb: 0, textAlign: 'center', position: 'relative', overflow: 'hidden', @@ -149,7 +150,7 @@ export default function Home() { {/* Mission Section */} - + {/* Donation Pitch Section */} - + {/* Features Section */} - + {/* Donation Options Section */} - + {/* Why It Matters Section */} - + {/* Join the Mission Section */} - +