From a2cf9791ae24edf492eb94713de9dbb327da44a2 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sat, 28 Feb 2026 10:53:00 +0100 Subject: [PATCH] fix: optimize footer layout for mobile - Switch to grid-cols-2 on mobile (was grid-cols-1) - Brand column: col-span-2 (full width on mobile) - Legal + Company columns: col-span-1 each (side-by-side on mobile) - Recent Posts column: col-span-2 (full width on mobile) - Reduce footer padding: py-14 md:py-24 (was py-24) - Tighten grid gap: gap-10 md:gap-16 (was gap-16) - Bottom bar: flex-row always so copyright + language on one line --- components/Footer.tsx | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/components/Footer.tsx b/components/Footer.tsx index cbb24205..53bf0c67 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -15,14 +15,14 @@ export default function Footer() { const currentYear = new Date().getFullYear(); return ( -