From fcdcbc51e366cab43fcbdc8e2e0018a98b49675e Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 14 Apr 2026 23:59:53 +0200 Subject: [PATCH] fix(pitch-deck): regulatory matrix header positioning - Regulatorien + Branche moved to top header row - Branche: white/70 instead of white/30 for readability - Regulatorien: indigo color instead of grey Co-Authored-By: Claude Opus 4.6 (1M context) --- .../slides/RegulatoryLandscapeSlide.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx b/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx index a7fa760..185851a 100644 --- a/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx +++ b/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx @@ -94,7 +94,9 @@ export default function RegulatoryLandscapeSlide({ lang }: RegulatoryLandscapeSl
{/* Staggered header rows — odd columns on top row, even on bottom */}
-
+
+ {lang === 'de' ? 'Branche' : 'Industry'} +
{CATEGORIES.map((cat, idx) => (
{idx % 2 === 0 ? ( @@ -104,12 +106,12 @@ export default function RegulatoryLandscapeSlide({ lang }: RegulatoryLandscapeSl ) : null}
))} -
+
+ {lang === 'de' ? 'Regulatorien' : 'Regulations'} +
-
- {lang === 'de' ? 'Branche' : 'Industry'} -
+
{CATEGORIES.map((cat, idx) => (
{idx % 2 === 1 ? ( @@ -119,9 +121,7 @@ export default function RegulatoryLandscapeSlide({ lang }: RegulatoryLandscapeSl ) : null}
))} -
- {lang === 'de' ? 'Regulatorien' : 'Regulations'} -
+
{/* Industry rows */}