--- import "@fontsource-variable/roboto-condensed"; import "../styles/global.css"; import Header from "../components/Header.astro"; import { LOCALES, DEFAULT_LOCALE, type Locale } from "@carpa/typesense"; interface Props { title?: string; locale?: Locale; } const { title = "Carpa", locale = DEFAULT_LOCALE } = Astro.props; const safeLocale: Locale = (LOCALES as readonly string[]).includes(locale) ? locale : DEFAULT_LOCALE; --- {title}