All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m8s
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 29s
CI / test-bqas (push) Successful in 28s
- Cover: remove "für den Maschinenbau" from tagline - Problem subtitle: Maschinenbauer → Deutsche und europäische Unternehmen - New USP slide after Solution: bridge between compliance docs/audits and actual code implementation — RFQ verification, bidirectional sync, automated process compliance, continuous instead of annual checks Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
634 B
TypeScript
36 lines
634 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',
|
|
'financials',
|
|
'the-ask',
|
|
'cap-table',
|
|
'customer-savings',
|
|
'ai-qa',
|
|
'annex-assumptions',
|
|
'annex-architecture',
|
|
'annex-gtm',
|
|
'annex-regulatory',
|
|
'annex-engineering',
|
|
'annex-aipipeline',
|
|
'annex-sdk-demo',
|
|
'annex-strategy',
|
|
'annex-finanzplan',
|
|
'annex-glossary',
|
|
]
|
|
|
|
export const TOTAL_SLIDES = SLIDE_ORDER.length
|