Files
breakpilot-core/pitch-deck/lib/slide-order.ts
Benjamin Admin e151984ce2
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m14s
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 35s
CI / test-python-voice (push) Successful in 36s
CI / test-bqas (push) Successful in 32s
fix(pitch-deck): remove Finanzprognose slide from deck
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-20 20:22:27 +02:00

36 lines
636 B
TypeScript

import { SlideId } from './types'
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',
'cap-table',
'customer-savings',
'ai-qa',
'annex-architecture',
'annex-regulatory',
'annex-engineering',
'annex-aipipeline',
'annex-sdk-demo',
'annex-strategy',
'annex-finanzplan',
'annex-assumptions',
'annex-glossary',
'risks',
'legal-disclaimer',
]
export const TOTAL_SLIDES = SLIDE_ORDER.length