From 5b4389c84a521d6fafba10b35307b9ab843c5009 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 11 Oct 2025 07:40:15 +0000 Subject: [PATCH] feat: set hero section padding to 50px MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change hero section from pt: {xs: 12, md: 20}, pb: 0 to py: 6.25 - py: 6.25 equals 50px (6.25 × 8px) - Applies 50px padding to both top and bottom of hero section 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/[locale]/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index 555a70d..53aff45 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -75,8 +75,7 @@ export default function Home() { sx={{ background: 'linear-gradient(135deg, #009688 0%, #00796B 100%)', color: 'white', - pt: { xs: 12, md: 20 }, - pb: 0, + py: 6.25, textAlign: 'center', position: 'relative', overflow: 'hidden',