das marketing frontend wurde auf lokalisierte urls umgestellt.

This commit is contained in:
Codex Agent
2025-11-03 15:50:10 +01:00
parent c0c1d31385
commit 55c606bdd4
47 changed files with 1592 additions and 251 deletions

View File

@@ -11,7 +11,7 @@ type LegalShowProps = {
slug: string;
};
export default function LegalShow(props: LegalShowProps) {
const LegalShow: React.FC<LegalShowProps> = (props) => {
const { seoTitle, title, content, effectiveFromLabel, versionLabel } = props;
return (
@@ -41,4 +41,8 @@ export default function LegalShow(props: LegalShowProps) {
</section>
</MarketingLayout>
);
}
};
LegalShow.layout = (page: React.ReactNode) => page;
export default LegalShow;