Files
breakpilot-core/pitch-deck/lib/slide-order.ts
Benjamin Admin 63d9566ee4
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m19s
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 30s
CI / test-python-voice (push) Successful in 32s
CI / test-bqas (push) Successful in 33s
fix(pitch-deck): KPICard NaN for string values, remove cap-table + Land&Expand
- KPICard: accept string values (e.g. "380+") without NaN
- Remove cap-table slide from order + sidebar
- Remove Land & Expand arrow from Pricing slide

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-22 09:31:11 +02:00

35 lines
621 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',
'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