Files
breakpilot-core/pitch-deck/lib/slide-order.ts
Benjamin Admin 4bce3724f2 feat: Executive Summary Onepager-Slide mit PDF-Download
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>
2026-03-26 15:00:54 +01:00

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