From d7ed5ce8c535f504e91a60989a95b8e357d32e09 Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Mon, 13 Apr 2026 22:36:14 +0200 Subject: [PATCH] fix(pitch-deck): add 8 missing slides to renderSlide switch ExecutiveSummary, RegulatoryLandscape, CapTable, Savings, SDKDemo, Strategy, Finanzplan, Glossary Co-Authored-By: Claude Opus 4.6 (1M context) --- pitch-deck/components/PitchDeck.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pitch-deck/components/PitchDeck.tsx b/pitch-deck/components/PitchDeck.tsx index 7c275d5..a0ed240 100644 --- a/pitch-deck/components/PitchDeck.tsx +++ b/pitch-deck/components/PitchDeck.tsx @@ -41,6 +41,14 @@ import GTMSlide from './slides/GTMSlide' import RegulatorySlide from './slides/RegulatorySlide' import EngineeringSlide from './slides/EngineeringSlide' import AIPipelineSlide from './slides/AIPipelineSlide' +import ExecutiveSummarySlide from './slides/ExecutiveSummarySlide' +import RegulatoryLandscapeSlide from './slides/RegulatoryLandscapeSlide' +import CapTableSlide from './slides/CapTableSlide' +import SavingsSlide from './slides/SavingsSlide' +import SDKDemoSlide from './slides/SDKDemoSlide' +import StrategySlide from './slides/StrategySlide' +import FinanzplanSlide from './slides/FinanzplanSlide' +import GlossarySlide from './slides/GlossarySlide' interface PitchDeckProps { lang: Language @@ -132,12 +140,16 @@ export default function PitchDeck({ lang, onToggleLanguage, investor, onLogout, isPresenting={presenter.state !== 'idle'} /> ) + case 'executive-summary': + return case 'cover': return case 'problem': return case 'solution': return + case 'regulatory-landscape': + return case 'product': return case 'how-it-works': @@ -156,6 +168,10 @@ export default function PitchDeck({ lang, onToggleLanguage, investor, onLogout, return case 'the-ask': return + case 'cap-table': + return + case 'customer-savings': + return case 'ai-qa': return case 'annex-assumptions': @@ -170,6 +186,14 @@ export default function PitchDeck({ lang, onToggleLanguage, investor, onLogout, return case 'annex-aipipeline': return + case 'annex-sdk-demo': + return + case 'annex-strategy': + return + case 'annex-finanzplan': + return + case 'annex-glossary': + return default: return null }