--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Implementation (LIGHT) // Reusable on-brand enterprise onboarding phases slide. // - Ground: --flux-background (#F9FAF8) // - Bold headline, 4 equal columns with phase numbers, titles, and bullets // - Subtle vertical dividers (--flux-grey-100) between columns // - Kaptio logo (dark) centered near the bottom const headline = 'Implementation approach'; const phases = [ { number: '01', title: 'Discovery', items: ['Requirements workshop', 'Data migration audit', 'Success criteria defined'], }, { number: '02', title: 'Build', items: ['Product configuration', 'Integration setup', 'User acceptance testing'], }, { number: '03', title: 'UAT', items: ['End-to-end scenario testing', 'Training and enablement', 'Go-live readiness review'], }, { number: '04', title: 'Go-live', items: ['Production cutover', 'Hypercare support', 'Steady-state handover'], }, ]; ---

{headline}

{phases.map((phase, i) => (
0 ? 'border-left: 1px solid var(--flux-grey-100);' : ''} `} > {phase.number}

{phase.title}

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