Phase 1: DB-Schema (12 fp_* Tabellen) + Excel-Import (332 Zeilen importiert) Phase 2: Compute Engine (Personal, Invest, Umsatz, Material, Betrieblich, Liquiditaet, GuV) Phase 3: API (/api/finanzplan/ — GET sheets, PUT cells, POST compute) Phase 4: Spreadsheet-UI (FinanzplanSlide als Annex mit Tab-Leiste, editierbarem Grid, Jahres-Navigation) Zusaetzlich: - Gruendungsdatum verschoben: Feb→Aug 2026 (DB + Personalkosten) - Neue Preisstaffel: Startup/<10 MA ab 3.600 EUR/Jahr (14-Tage-Test, Kreditkarte) - Competition-Slide: Pricing-Tiers aktualisiert Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
548 B
TypeScript
31 lines
548 B
TypeScript
import { SlideId } from './types'
|
|
|
|
export const SLIDE_ORDER: SlideId[] = [
|
|
'intro-presenter',
|
|
'executive-summary',
|
|
'cover',
|
|
'problem',
|
|
'solution',
|
|
'regulatory-landscape',
|
|
'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',
|
|
'annex-finanzplan',
|
|
]
|
|
|
|
export const TOTAL_SLIDES = SLIDE_ORDER.length
|