--- import Footer from '$components/Footer.astro'; import Navbar from '$components/Navbar.astro'; import translate from '$i18n/translate'; import site from '$i18n/translations/site'; import type Locale from '$types/Locale'; interface Props { locale: Locale; title: string; } const { locale, title } = Astro.props; const t = translate(locale); ---