--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; // TEMPLATE โ€” Feature detail (LIGHT) // Reusable on-brand feature explainer. Clone this for "what is it / what is the value" // feature walkthroughs. // - Ground: --flux-background (#F9FAF8) // - LEFT column: bold title, then Q&A blocks (bold lead + Lexend Light body) // - RIGHT: large white screenshot card extending off the right edge, vertically // centered, with a layered soft shadow stack. Swap the placeholder for a real // product screenshot when available. // - Bottom-left: running footer label, bold --flux-black at 50% opacity const title = 'Cabin Seating Tool'; const blocks = [ { lead: 'What is it?', body: 'The ability to sign up for specific departures that are either sold out or not yet available for booking.', }, { lead: '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'; // Layered soft shadow (a shadow stack, not a brand color) const cardShadow = '0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.8px 33.4px rgba(0, 0, 0, 0.05), 0px 22.3px 17.9px rgba(0, 0, 0, 0.042), 0px 12.5px 10px rgba(0, 0, 0, 0.035), 0px 6.7px 5.3px rgba(0, 0, 0, 0.028), 0px 2.8px 2.2px rgba(0, 0, 0, 0.02)'; ---

{title}

{blocks.map((block) => (

{block.lead}

{block.body}

))}
{footerLabel}