/* ======================================================================== screen-confirmation.jsx, phone showing the post-commit confirmation email that lands the moment Marcus approves the rebook. Mirrors the structure of screen-email.jsx, inverted in tone. ======================================================================== */ function ScreenConfirmation({ active }) { const c = window.DEMO_SCRIPT.confirmation_email; const lukas = window.DEMO_SCRIPT.passenger; return (
{/* Local keyframe for the confirmation slide-in, kept inside the file so screens.css does not have to change. */}
9:24
{/* Gmail-style toolbar */}
{/* Gmail message metadata */}
From: {c.from_name} <{c.from_addr}>
Date: {window.DEMO_DATES.TODAY_LONG} at 09:24
Subject: {c.subject}
{/* Email content */}
{/* Sender bar with logo */}
Emirates
Add Emirates to your safe senders list
{/* Headline row, green check left of the title */}

{c.headline}

Emirates booking reference: {lukas.pnr}

Dear Mr. Weber,

{c.body}

{/* Flight details table, reusing the cancellation email styles */}
Flight details:
Flight number Origin Destination Departure Arrival Seat
{c.flight_code} {c.from_city} {c.to_city} {c.depart_date} · {c.depart} {c.arrive_date} · {c.arrive} {c.seat}

Meal preference: {c.meal}. Boarding pass is attached and is also available in Manage Your Booking.

Kind regards,

The Emirates team

Last Updated (GST): {window.DEMO_DATES.TODAY_LONG}, 09:24
{/* Gmail bottom action bar */}
); } window.ScreenConfirmation = ScreenConfirmation;