--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE โ€” Status grid (LIGHT) // Reusable on-brand product-status / progress slide. Rebuilt as real structured // markup (the source Figma slide is a flattened image). // - Ground: --flux-background (#F9FAF8) // - Centered bold black title (optional leading emoji) + light black subtitle // - Three equal columns: a Flux Badge status pill, a bold product name, and a list // of items each prefixed by a green check icon + light black label // - Kaptio logo (dark) centered near the bottom // // Badge tint mapping (Flux Badge convention โ€” pill, text-xs, bold, dark text on tint): // UAT -> --flux-yellow-300 (pending / in-testing) // PILOT -> --flux-green-200 (confirmed / live) // GA -> --flux-blue-200 (awaiting / available) const title = '๐Ÿš€ Product-by-Product Progress'; const subtitle = 'Where we are today'; const columns = [ { status: 'UAT', tint: 'var(--flux-yellow-300)', product: 'Voyage', items: ['Multiple operators in testing', '2026 departures loaded', 'Cabins configured'], }, { status: 'PILOT', tint: 'var(--flux-green-200)', product: 'Circle', items: ['>40 DMC offices live', 'Processing 10k calculations daily', 'Series & custom group support'], }, { status: 'GA', tint: 'var(--flux-blue-200)', product: 'Quest', items: ['Foundation in place', '20+ supplier connections', 'Supports tailormade E2E'], }, ]; ---

{title}

{subtitle}

{columns.map((col) => (
{col.status}

{col.product}

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