--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE โ€” Two-column compare (LIGHT) // Reusable on-brand "before / after" comparison. This is the CORRECTED version of a // slide that previously went off-brand (coral eyebrows everywhere, yellow headline / // emphasis). It encodes the Flux anti-leak rules: // - One bold black headline; NO colored / yellow / coral words. // - ONE muted grey eyebrow (text-xs, bold, tracking-widest, uppercase) โ€” not one per column. // - Two equal subtle cards: --flux-radius, border --flux-grey-100, bg --flux-surface. // - Column headings are bold black (NOT a second eyebrow, NOT colored). // - Body is Lexend Light black; lead-in words may be bold (700) black โ€” NEVER colored. // - No single-edge accent bars; shadow capped at --flux-shadow-md. const eyebrow = 'Why Kaptio'; const headline = 'From spreadsheets to a single source of truth'; const columns = [ { heading: 'What you have today', points: [ { lead: 'Scattered data.', body: 'Itineraries, pricing, and availability live across disconnected spreadsheets.' }, { lead: 'Manual rekeying.', body: 'Every change is copied by hand between tools, inviting costly errors.' }, { lead: 'Slow to quote.', body: 'Building a complex multi-day trip takes days, not minutes.' }, { lead: 'No live view.', body: 'Margins and capacity are only known after the fact.' }, ], }, { heading: 'What Kaptio gives you', points: [ { lead: 'One platform.', body: 'Products, pricing, and bookings managed in a single connected system.' }, { lead: 'Automated flows.', body: 'Changes propagate everywhere instantly, with no duplicate entry.' }, { lead: 'Quote in minutes.', body: 'Assemble and price tailored itineraries while the customer is still on the call.' }, { lead: 'Real-time insight.', body: 'See margin, capacity, and demand as they move.' }, ], }, ]; ---

{eyebrow}

{headline}

{columns.map((col) => (

{col.heading}

    {col.points.map((point) => (
  • {point.lead}{' '}{point.body}
  • ))}
))}