--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE โ€” Roadmap (LIGHT) // Reusable on-brand forward-looking roadmap slide. Status grid covers TODAY; // this covers FORWARD horizons. // - Ground: --flux-background (#F9FAF8) // - Centered bold headline (optional single emoji) + light subtitle // - Horizontal 4-column timeline with phase pills and bullet items // - Kaptio logo (dark) centered near the bottom const title = '๐Ÿš€ Roadmap ahead'; const subtitle = 'Priorities for the next four quarters'; const phases = [ { label: 'Q1', tint: 'var(--flux-yellow-300)', name: 'Foundation', items: ['Core API stabilisation', 'Migration tooling', 'Operator onboarding'], }, { label: 'Q2', tint: 'var(--flux-primary-100)', name: 'Expansion', items: ['Multi-product packaging', 'Supplier integrations', 'Reporting v2'], }, { label: 'Q3', tint: 'var(--flux-green-200)', name: 'Scale', items: ['Self-service config', 'Edge app marketplace', 'Performance tuning'], }, { label: 'Q4', tint: 'var(--flux-blue-200)', name: 'Horizon', items: ['AI-assisted quoting', 'Global localisation', 'Partner ecosystem'], }, ]; ---

{title}

{subtitle}

{phases.map((phase) => (
{phase.label}

{phase.name}

    {phase.items.map((item) => (
  • {item}
  • ))}
))}