--- // Import the necessary dependencies import EmailFooterInput from '@components/ui/forms/input/EmailFooterInput.astro'; import BrandLogo from '@components/BrandLogo.astro'; import { SITE } from '@data/constants'; import { getLocaleFromPath, localizeHref } from '@/i18n'; import { siteCopy } from '@data/site-copy'; const locale = getLocaleFromPath(Astro.url.pathname); const copy = siteCopy[locale].footer; type FooterSection = { section: string; links: Array<{ name: string; url: string }>; }; ---