diff --git a/frontend/src/components/Footer.tsx b/frontend/src/components/Footer.tsx index 9e88e45c4d..ca7084a226 100644 --- a/frontend/src/components/Footer.tsx +++ b/frontend/src/components/Footer.tsx @@ -26,99 +26,128 @@ export default function Footer() { setOpenSection((prev) => (prev === title ? null : title)) }, []) + const hasSocialSection = footerSections.some((section) => + section.title.toLowerCase().startsWith('social') + ) + + const normalizedFooterSections = footerSections + return (