- New annex slide 'annex-sdk-demo' with auto-scrolling screenshot gallery (22 real screenshots from Müller Maschinenbau demo project) - Browser chrome mockup, fullscreen view, thumbnail strip navigation - Inline SDK dashboard preview on Product slide - Seed script for creating demo data + taking Playwright screenshots - Presenter script for SDK demo narration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
477 B
TypeScript
28 lines
477 B
TypeScript
import { SlideId } from './types'
|
|
|
|
export const SLIDE_ORDER: SlideId[] = [
|
|
'intro-presenter',
|
|
'cover',
|
|
'problem',
|
|
'solution',
|
|
'product',
|
|
'how-it-works',
|
|
'market',
|
|
'business-model',
|
|
'traction',
|
|
'competition',
|
|
'team',
|
|
'financials',
|
|
'the-ask',
|
|
'ai-qa',
|
|
'annex-assumptions',
|
|
'annex-architecture',
|
|
'annex-gtm',
|
|
'annex-regulatory',
|
|
'annex-engineering',
|
|
'annex-aipipeline',
|
|
'annex-sdk-demo',
|
|
]
|
|
|
|
export const TOTAL_SLIDES = SLIDE_ORDER.length
|