Files
breakpilot-core/pitch-deck/lib/slide-order.ts
Benjamin Admin 2dfc47d67e
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m11s
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 34s
CI / test-python-voice (push) Successful in 34s
CI / test-bqas (push) Successful in 34s
feat(pitch-deck): insurance optimization, new positions, funding, slide reorder
- Insurance: combined E&O+Produkt, realistic costs (~800 vs 1708 EUR/Mon)
- New: Betriebshaftpflicht, Dienstreise-KV, Gruppenunfall, Key Man
- New: Recruiting, ext. DSB, Zertifizierung (ISO 27001)
- BG: 0.5% instead of 2.77% (VBG IT/Büro)
- Marketing: 8% (2026-28), 10% (2029+)
- Bewirtungskosten: all customers x 50 EUR (not just Enterprise)
- Messen: 2x in 2029, 3x in 2030
- Liquidität: Fördergelder/Grants + Forschungszulage (§27a EStG)
- Serverkosten tooltip updated
- Slide reorder: Strategy+Finanzplan after 18, Risks before Glossary
- 110→380+ everywhere, Compliance Optimizer on exec summary

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-21 23:07:30 +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-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