--- import LanguagePicker from "../components/LanguagePicker.astro"; import { AstroFont } from "astro-font"; import Nav from "../components/Nav.astro"; import { useTranslations } from "@i18n/utils"; interface Props { title: string; width?: "full" | "compact"; } const t = useTranslations(Astro.url); const { title } = Astro.props; import "./theme.css"; import "./global.css"; ---