--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Team (LIGHT) // Reusable on-brand leadership / team slide. Clone this to introduce key people. // - Ground: --flux-background (#F9FAF8) // - Bold headline (no emoji), row of person cards with circular avatars // - No accent bars on cards // - Kaptio logo (dark) centered near the bottom const headline = 'Leadership'; const members = [ { initials: 'JD', name: 'Jane Doe', role: 'Chief Executive Officer' }, { initials: 'MS', name: 'Marcus Smith', role: 'Chief Technology Officer' }, { initials: 'AL', name: 'Anna Lee', role: 'Chief Product Officer' }, { initials: 'RK', name: 'Robert Kim', role: 'Chief Revenue Officer' }, ]; ---

{headline}

{members.map((member) => (
{member.initials}

{member.name}

{member.role}

))}