14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
|
|
import { useI18n } from "../i18n";
|
||
|
|
|
||
|
|
export function AboutPage() {
|
||
|
|
const { t } = useI18n();
|
||
|
|
return (
|
||
|
|
<div className="mx-auto max-w-2xl space-y-6">
|
||
|
|
<h1 className="text-2xl font-bold">{t("aboutTitle")}</h1>
|
||
|
|
<p className="text-neutral-300 leading-relaxed whitespace-pre-line">
|
||
|
|
{t("aboutIntro")}
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|