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'}