From f55f0551f93885b549e9db50d58ec60c790e7c3c Mon Sep 17 00:00:00 2001 From: default Date: Tue, 2 Jun 2026 16:00:37 +0000 Subject: [PATCH] clean: minimal, modern footer design - Redesigned landing page footer with cleaner layout - Added subtle tagline 'Fresh produce, delivered fresh' - Links now use uppercase + letter-spacing for refined look - Better spacing (py-12 vs py-8) and gap management - Official page links instead of hash anchors - Copyright on separate line for better hierarchy - Consistent with overall minimal aesthetic --- src/components/landing/LandingPageWrapper.tsx | 87 ++++++++++++------- 1 file changed, 54 insertions(+), 33 deletions(-) diff --git a/src/components/landing/LandingPageWrapper.tsx b/src/components/landing/LandingPageWrapper.tsx index bcea28c..f8fc8fb 100644 --- a/src/components/landing/LandingPageWrapper.tsx +++ b/src/components/landing/LandingPageWrapper.tsx @@ -214,69 +214,90 @@ interface FooterProps { export function Footer({ className = "" }: FooterProps) { const footerLinks = [ - { label: "Privacy", href: "#" }, - { label: "Terms", href: "#" }, - { label: "Contact", href: "#" }, + { label: "Privacy", href: "/privacy-policy" }, + { label: "Terms", href: "/terms-and-conditions" }, + { label: "Contact", href: "/contact" }, ]; return (