Initial frontend import
This commit is contained in:
13
src/pages/AboutPage.tsx
Normal file
13
src/pages/AboutPage.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user