// Maison Yeya — Home function Home({ setRoute, onAppointment, onOpenLook, onSave, isSaved, hero }) { const heroes = { marionettes: { src: "media/media-01-yeya-couture-les-marionettes-capella-01.webp", look: "Les Marionettes · Capella" }, bridal: { src: "media/media-02-collection-cover-bridal-scaled.webp", look: "Shades of White · Bridal Couture Privée" }, valenciennes:{ src: "media/media-07-yeya-valenciennes-lujaina-01.webp", look: "Les Valenciennes · Lujaina" }, runway: { src: "media/media-10-maison-yeya-july-20230288-2-scaled.webp", look: "L'Ascension · Runway" } }; const h = heroes[hero] || heroes.marionettes; const featured = useMemo(() => [ BRIDAL_COLLECTIONS[2], // Utopia COUTURE_COLLECTIONS[0], // Marionettes BRIDAL_COLLECTIONS[3], // Valenciennes COUTURE_COLLECTIONS[3] // Sublimissime ], []); return (
{/* ────────── HERO ────────── */}
{/* Left: editorial image */}
{h.look} {/* Hero overlay text */}
Featured Look · Couture Privée
{h.look}
Maison Yeya · Est. 2007 / 2008 ✦ Dubai
{/* Right: copy stack */}
Bridal · Couture · Private Appointment

Maison
Yeya.

Bridal and couture by Yasmine Yeya — by private appointment in Dubai Design District.

{/* Press attribution lozenge */}
"

The bridal wedding designer
that charmed the world.

— Per CNN, attributed by Maison Yeya
{/* Quick contact */}
Atelier · Mobile
{CONTACT.mobile}
{/* ────────── PRESS MARQUEE ────────── */}
{/* ────────── EDITORIAL INTRO ────────── */}
The House — Bridal · Couture
A note from the Maison

From Ismailia on the Suez to Dubai Design District — a French-Egyptian couture house built around bridal storytelling, hand-set embroidery, and the choreography of a private fitting.

{/* ────────── TWIN COLLECTIONS ────────── */}
setRoute("bridal")} tall /> setRoute("couture")} tall />
{/* ────────── FEATURED LOOKS ────────── */}
Featured · Atelier Picks · 2025
Selected by Yasmine

Featured Looks

{featured.map((look, i) => (
))}
{/* ────────── FOUNDER STRIPE ────────── */}
Yasmine Yeya, Founder
The Founder · Yasmine Yeya

A maison built by hand, look by look.

Born in 1981 to an Egyptian father and a French mother, raised in Ismailia on the Suez Canal, Yasmine made her first steps in fashion in 2006 and emerged through MBC's Mission: Fashion in 2008 — the milestone linked to Elie Saab. The Maison's operations moved to Dubai in 2017.

{/* ────────── ATELIER & APPOINTMENTS ────────── */}
L'Atelier · Dubai Design District

A private fitting — by appointment only.

Each piece is hand-made to measure at the atelier in Building 4A, d3. We work by quotation and consultation; the showroom is open by appointment.

Address

Office 203A, Building 4A
Dubai Design District
United Arab Emirates

Hours

10:00 – 18:00
Closed Fridays & UAE public holidays

Atelier editorial
); } function CollectionCard({ label, title, note, image, onOpen, tall }) { const [hover, setHover] = useState(false); return (
setHover(true)} onMouseLeave={() => setHover(false)} style={{ cursor: "pointer", position: "relative" }}>
{title}
{label}

{title}

{note}

Enter →
); } window.Home = Home;