fix(pitch-deck): regulatory matrix header positioning
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m12s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 31s
CI / test-python-voice (push) Successful in 36s
CI / test-bqas (push) Successful in 30s

- 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) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-14 23:59:53 +02:00
parent 7b8f8d4b5a
commit fcdcbc51e3

View File

@@ -94,7 +94,9 @@ export default function RegulatoryLandscapeSlide({ lang }: RegulatoryLandscapeSl
<div className="space-y-1.5">
{/* Staggered header rows — odd columns on top row, even on bottom */}
<div className="grid items-end gap-1" style={{ gridTemplateColumns: '140px repeat(8, 1fr) 70px' }}>
<div />
<div className="text-[9px] text-white/70 uppercase tracking-wider pl-1 font-semibold">
{lang === 'de' ? 'Branche' : 'Industry'}
</div>
{CATEGORIES.map((cat, idx) => (
<div key={cat.id} className="text-center">
{idx % 2 === 0 ? (
@@ -104,12 +106,12 @@ export default function RegulatoryLandscapeSlide({ lang }: RegulatoryLandscapeSl
) : null}
</div>
))}
<div />
<div className="text-[8px] text-indigo-400 text-center font-semibold uppercase tracking-wider">
{lang === 'de' ? 'Regulatorien' : 'Regulations'}
</div>
</div>
<div className="grid items-start gap-1" style={{ gridTemplateColumns: '140px repeat(8, 1fr) 70px' }}>
<div className="text-[9px] text-white/30 uppercase tracking-wider pl-1">
{lang === 'de' ? 'Branche' : 'Industry'}
</div>
<div />
{CATEGORIES.map((cat, idx) => (
<div key={cat.id} className="text-center">
{idx % 2 === 1 ? (
@@ -119,9 +121,7 @@ export default function RegulatoryLandscapeSlide({ lang }: RegulatoryLandscapeSl
) : null}
</div>
))}
<div className="text-[8px] text-white/30 text-center font-semibold uppercase tracking-wider">
{lang === 'de' ? 'Regulatorien' : 'Regulations'}
</div>
<div />
</div>
{/* Industry rows */}