From 85055c8154eb2a7061e366f557a6738babdb1123 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Wed, 13 May 2026 22:41:18 +0200 Subject: [PATCH] fix(typography): replace generic prose with industrial mdx components on content pages --- app/[locale]/[slug]/page.tsx | 23 +++++++++++++++--- app/[locale]/blog/[slug]/page.tsx | 25 ++++++++++++++++++-- app/[locale]/referenzen/[slug]/page.tsx | 31 ++++++++++++++++--------- app/globals.css | 1 + 4 files changed, 64 insertions(+), 16 deletions(-) diff --git a/app/[locale]/[slug]/page.tsx b/app/[locale]/[slug]/page.tsx index 66e2e241c..2a29fc51e 100644 --- a/app/[locale]/[slug]/page.tsx +++ b/app/[locale]/[slug]/page.tsx @@ -39,7 +39,24 @@ const mdxComponents = { FaqBlock, JsonLd, Button, - Heading, + // Standard HTML element mapping for consistent E-TIB typography + h1: (props: any) => , // Hidden because Hero handles H1 + h2: (props: any) => , + h3: (props: any) => , + h4: (props: any) => , + p: (props: any) =>

, + ul: (props: any) =>