Files
breakpilot-core/pitch-deck/lib/slide-order.ts
T
Sharang Parnerkar 404963db77
Build pitch-deck / build-push-deploy (push) Successful in 1m22s
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 33s
CI / test-bqas (push) Successful in 30s
feat(showcase): restore intro-presenter and executive-summary slides in showcase mode
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-04 23:14:18 +02:00

45 lines
871 B
TypeScript

import { SlideId } from './types'
// Slides hidden in showcase (customer) mode — financial and investor-specific content
export const SHOWCASE_HIDDEN_SLIDES = new Set<SlideId>([
'financials',
'the-ask',
'cap-table',
'annex-assumptions',
'annex-finanzplan',
'risks',
])
export const SLIDE_ORDER: SlideId[] = [
'intro-presenter',
'executive-summary',
'cover',
'problem',
'solution',
'usp',
'regulatory-landscape',
'product',
'how-it-works',
'market',
'business-model',
'traction',
'competition',
'team',
'the-ask',
'customer-savings',
'ai-qa',
'annex-strategy',
'annex-finanzplan',
'annex-assumptions',
'annex-regulatory',
'annex-architecture',
'annex-engineering',
'annex-aipipeline',
'annex-sdk-demo',
'risks',
'annex-glossary',
'legal-disclaimer',
]
export const TOTAL_SLIDES = SLIDE_ORDER.length