--- import { useTranslations, type Locale } from "../i18n/ui"; interface Props { locale: Locale; } const { locale } = Astro.props; const t = useTranslations(locale); const year = new Date().getFullYear(); ---