--- import PresentationLayout from '../../layouts/PresentationLayout.astro'; // TEMPLATE โ€” Recap intro (LIGHT) // Reusable on-brand recap / feature-section opener. Clone this to open a // "what we built" or recap chapter inside a light deck section. // - Ground: --flux-background (#F9FAF8) // - Centered Lexend Bold headline (optional single leading emoji) + Lexend Light subtitle // - Bottom third: a fan of tilted white "screenshot" cards bleeding off the bottom edge // (rotations roughly -8deg, +15deg, -15deg, +31deg). Swap the placeholder cards for real // product screenshots when available; the slide clips them (overflow hidden). const headline = '๐Ÿ—’๏ธ What we built for Voyage in 2025'; const subtitle = 'Notable features (we built much more of course)'; const cards = [ { left: '-6%', bottom: '-24%', width: '30%', rotate: '-8deg' }, { left: '20%', bottom: '-28%', width: '32%', rotate: '15deg' }, { left: '48%', bottom: '-26%', width: '30%', rotate: '-15deg' }, { left: '74%', bottom: '-22%', width: '30%', rotate: '31deg' }, ]; // 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)'; ---

{headline}

{subtitle}

{cards.map((card) => ( ))}