--- import LanguagePicker from "../components/LanguagePicker.astro"; import { AstroFont } from "astro-font"; import Nav from "../components/Nav.astro"; interface Props { title: string; width?: "full" | "compact"; } const { title, width = "compact" } = Astro.props; ---