--- import PrimaryCTA from '@/components/content/PrimaryCTA.astro'; import Container from '@/components/primitives/Container.astro'; import { footerNavigationGroups, getFooterLead, siteMetadata } from '@/lib/site'; interface Props { currentPath: string; } const { currentPath: _currentPath } = Astro.props; const currentYear = new Date().getFullYear(); const footerLead = getFooterLead(_currentPath); ---