import { useI18n } from "../i18n"; export function AboutPage() { const { t } = useI18n(); return (

{t("aboutTitle")}

{t("aboutIntro")}

); }