--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; import KaptioLogo from '../../components/KaptioLogo'; // TEMPLATE — Process / journey (LIGHT) // Reusable on-brand how-it-works slide. Inspired by Flux Journey component // semantics but pure static Astro — NOT the compare template. // - Ground: --flux-background (#F9FAF8) // - Bold headline + optional one-line intro // - 4 horizontal steps with numbered tiles, grey arrows, bold titles, light descriptions // - Kaptio logo (dark) centered near the bottom const headline = 'How it works'; const intro = 'From first enquiry to confirmed booking in four connected steps.'; const steps = [ { title: 'Discover', description: 'Search products and build tailored itineraries.' }, { title: 'Configure', description: 'Apply pricing, availability, and passenger details.' }, { title: 'Quote', description: 'Generate proposals and share with customers.' }, { title: 'Book', description: 'Confirm reservations and trigger operations.' }, ]; ---

{headline}

{intro}

{steps.map((step, i) => (
{i + 1}

{step.title}

{step.description}

{i < steps.length - 1 && (
)}
))}