--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; // TEMPLATE โ€” Cards band (LIGHT) // Centered headline in the upper zone; numbered cards below on a single light ground. // Use for pillars, steps, or parallel themes โ€” NOT inside a screenshot frame. // - Ground: --flux-background, centered title + optional intro // - Cards: white surface, --flux-shadow-md, bold index (/01), title, light description const headline = 'Leaders must leverage modern tools to compete'; const intro = 'Three parallel moves that compound โ€” each card is one theme, not a screenshot placeholder.'; const cards = [ { number: '01', title: 'Standardise on Flux', description: 'One token system and deck kit so every surface and agent output stays on-brand.', }, { number: '02', title: 'Upgrade technology', description: 'Apply modern tooling and automation to tackle inefficiencies in delivery.', }, { number: '03', title: 'Measure ROI', description: 'Track adoption and time saved on each team that ships with the system.', }, ]; const cardShadow = 'var(--flux-shadow-md)'; ---

{headline}

{intro}

{cards.map((card) => (

/{card.number}

{card.title}

{card.description}

))}