feat: add localized docs pages

This commit is contained in:
2026-04-27 16:27:08 +02:00
parent 7fd39f58d8
commit 68b0ceb593
16 changed files with 735 additions and 127 deletions
@@ -0,0 +1,14 @@
import targetArchitecture from "../../../../docs/technical/target-architecture.md?raw";
import { DocsDocument } from "@/pages/docs/DocsDocument";
import { targetArchitectureFr } from "@/pages/docs/docsTranslations";
export function DocsTargetArchitecturePage(): React.JSX.Element {
return (
<DocsDocument
content={targetArchitecture}
frContent={targetArchitectureFr}
meta="03"
title="Architecture cible"
/>
);
}