--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Agenda (LIGHT) // Reusable on-brand agenda / "what we'll cover" slide. Clone this near the start // of a deck to set expectations. // - Ground: --flux-background (#F9FAF8) // - ONE muted grey kicker (the only kicker), bold black headline // - Vertical numbered list: large bold number in --flux-primary-400, bold item // title, one short Lexend Light description line // - Kaptio logo (dark) centered near the bottom const kicker = 'Agenda'; const headline = "What we'll cover"; const items = [ { title: 'Where we are today', description: 'Product status, go-lives, and key milestones from the year.' }, { title: 'What customers told us', description: 'Themes from advisory boards, support, and the field.' }, { title: 'The roadmap ahead', description: 'Priorities and innovation themes for the next four quarters.' }, { title: 'How we get there', description: 'Teams, timelines, and what we need from each other.' }, ]; ---

{kicker}

{headline}

    {items.map((item, i) => (
  1. {i + 1} {item.title} {item.description}
  2. ))}