feat: add localized docs pages

This commit is contained in:
Tom Boullay
2026-04-27 16:27:08 +02:00
parent 7139ae559e
commit d5a295e18f
16 changed files with 735 additions and 127 deletions
+14
View File
@@ -0,0 +1,14 @@
import readme from "../../../README.md?raw";
import { DocsDocument } from "@/pages/docs/DocsDocument";
import { readmeFr } from "@/pages/docs/docsTranslations";
export function DocsReadmePage(): React.JSX.Element {
return (
<DocsDocument
content={readme}
frContent={readmeFr}
meta="01"
title="README"
/>
);
}