--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; // TEMPLATE B โ€” Content (LIGHT) // Reusable on-brand content slide. Clone this structure for "explainer" slides. // - Ground: --flux-background (#F9FAF8) // - Left text column: bold title, then "subhead + paragraph" blocks // - Right: white card with a soft layered shadow as an image/screenshot placeholder // - Footer running label bottom-left, --flux-black at 50% opacity const title = 'Cabin Seating Tool'; const blocks = [ { subhead: 'What is it?', body: 'The ability to sign up for specific departures that are either sold out or not yet available for booking.', }, { subhead: 'What is the value?', body: 'Captures unmet demand and increases the likelihood of filling available seats. By offering customers to join waitlisted trips, it improves customer satisfaction and loyalty.', }, ]; const footerLabel = 'What we built in 2025'; ---

{title}

{blocks.map((block) => (

{block.subhead}

{block.body}

))}
{footerLabel}