---
import LanguageSwitcher from './LanguageSwitcher.astro';
import type { Locale } from '../i18n/utils';
import { getTranslations } from '../i18n/utils';
interface Props {
locale: Locale;
}
const { locale } = Astro.props;
const t = getTranslations(locale);
---