From b01617b30def7eb94c426acedaa41b7537432369 Mon Sep 17 00:00:00 2001 From: michelleyeoh Date: Sun, 1 Mar 2026 16:39:26 -0800 Subject: [PATCH 1/2] updated footer color and background for about-us --- app/(pages)/_components/Footer/Footer.tsx | 7 ++++--- app/(pages)/about-us/page.tsx | 2 +- app/(pages)/layout.tsx | 8 ++++---- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/app/(pages)/_components/Footer/Footer.tsx b/app/(pages)/_components/Footer/Footer.tsx index 53cbd90..84374e1 100644 --- a/app/(pages)/_components/Footer/Footer.tsx +++ b/app/(pages)/_components/Footer/Footer.tsx @@ -24,15 +24,16 @@ export default function Footer({ variant = 'about-us' }: FooterProps) { const logoStyles = 'h-6 text-white transition hover:text-gray-300 break-400:h-7 md:h-8 lg:h-8 xl:h-10 2xl:h-15'; - const bgColor = variant === 'index' ? 'bg-[#080022] z-[-1]' : 'bg-[#080022]'; + const isIndex = variant === 'index'; + const bgColor = isIndex ? 'bg-[#080022]' : 'bg-[#11043F]'; return ( -