From 7b8f8d4b5a327b4cbdf08bfcda8b21a58faff0f6 Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 14 Apr 2026 23:54:59 +0200 Subject: [PATCH] =?UTF-8?q?fix(pitch-deck):=20regulatory=20matrix=20?= =?UTF-8?q?=E2=80=94=20remove=20legend,=20stagger=20headers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove colored dot legend row (redundant with column headers) - Stagger column headers on 2 rows (odd/even) to save space - Last column: Reg. → Regulatorien Co-Authored-By: Claude Opus 4.6 (1M context) --- .../slides/RegulatoryLandscapeSlide.tsx | 39 +++++++++++-------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx b/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx index af10fb9..a7fa760 100644 --- a/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx +++ b/pitch-deck/components/slides/RegulatoryLandscapeSlide.tsx @@ -90,32 +90,37 @@ export default function RegulatoryLandscapeSlide({ lang }: RegulatoryLandscapeSl {/* Matrix */} - {/* Category Legend */} -
- {CATEGORIES.map((cat) => ( -
-
- {categoryLabels[cat.id]} -
- ))} -
- {/* Matrix Grid */}
- {/* Header row */} -
+ {/* Staggered header rows — odd columns on top row, even on bottom */} +
+
+ {CATEGORIES.map((cat, idx) => ( +
+ {idx % 2 === 0 ? ( + + {categoryLabels[cat.id]} + + ) : null} +
+ ))} +
+
+
{lang === 'de' ? 'Branche' : 'Industry'}
- {CATEGORIES.map((cat) => ( + {CATEGORIES.map((cat, idx) => (
- - {categoryLabels[cat.id]} - + {idx % 2 === 1 ? ( + + {categoryLabels[cat.id]} + + ) : null}
))}
- {lang === 'de' ? 'Reg.' : 'Regs'} + {lang === 'de' ? 'Regulatorien' : 'Regulations'}