--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; // TEMPLATE — Categorized lists (LIGHT) // Reusable on-brand taxonomy / two-column list slide. Clone this for extension // categories, product groupings, or any side-by-side categorized lists. // - Ground: --flux-background (#F9FAF8) // - Left-aligned bold headline (optional single emoji), no kicker required // - Two equal columns: full-width header chips + unordered list below each // - NO per-column colored eyebrows beyond the chips const headline = '💡 Extension Examples'; const columns = [ { chipLabel: 'Core Extensions', chipBg: 'var(--flux-primary-100)', chipBorder: 'var(--flux-primary-600)', items: [ 'Itinerary Builder Service Extensions', 'Package Search Extensions', 'Passenger Grid', 'Commission Override Extensions', ], }, { chipLabel: 'Edge Apps', chipBg: 'var(--flux-yellow-200)', chipBorder: 'var(--flux-yellow-800)', items: [ 'Operational Apps (e.g. Guest Check-in)', 'FinTech apps (e.g. supplier payments)', 'Doc Generation & Customer Payments', 'Mobile Guest App', 'Data Intelligence Apps', ], }, ]; ---

{headline}

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