/**
 * Outro — burgundy footer with art-nouveau corner ornaments, "Save the Date"
 * in cursive script, a closing polaroid, and the official-invitation note.
 */
function Outro({ footer, frame = "vine" }) {
  return (
    <section
      id="abschluss"
      className="section section-burgundy outro"
      data-screen-label="07 Abschluss">
      
      <SectionFrame frame={frame} cornerOnly />

      <div className="inner">
        <h2 className="outro-script reveal">Save the Date</h2>

        <div className="outro-photo reveal">
          <image-slot id="outro-photo" placeholder="Foto · Kathy & Christian" shape="rect"></image-slot>
        </div>

        <p className="outro-body reveal">{footer.body}</p>

        <AddressModal />
      </div>
    </section>);

}

if (typeof window !== "undefined") window.Outro = Outro;