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 }