Neue Folie als erste Content-Slide (nach Intro) mit kompakter Investor-Uebersicht: Problem/Loesung, KPIs, Markt, Team, Funding. PDF-Download via window.print() ohne zusaetzliche Dependencies. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
500 B
TypeScript
29 lines
500 B
TypeScript
import { SlideId } from './types'
|
|
|
|
export const SLIDE_ORDER: SlideId[] = [
|
|
'intro-presenter',
|
|
'executive-summary',
|
|
'cover',
|
|
'problem',
|
|
'solution',
|
|
'product',
|
|
'how-it-works',
|
|
'market',
|
|
'business-model',
|
|
'traction',
|
|
'competition',
|
|
'team',
|
|
'financials',
|
|
'the-ask',
|
|
'ai-qa',
|
|
'annex-assumptions',
|
|
'annex-architecture',
|
|
'annex-gtm',
|
|
'annex-regulatory',
|
|
'annex-engineering',
|
|
'annex-aipipeline',
|
|
'annex-sdk-demo',
|
|
]
|
|
|
|
export const TOTAL_SLIDES = SLIDE_ORDER.length
|