// Maison Yeya — Press & Contact pages function PressPage({ setRoute, onAppointment }) { return (
{/* Hero strip */}
Press · Accolades · Editorial

Press.

A selection of features and accolades. Maison Yeya does not currently licence press logos or tear sheets — please contact {CONTACT.press} for usage requests.

{/* Press list */}
{PRESS.map((p, i) => (
{String(i + 1).padStart(2, "0")} / {String(PRESS.length).padStart(2, "0")}
{p.quote}
{p.source} · {p.year} · {p.kind}
{p.source}
{p.year}
))}
{/* Selected editorial visuals */}
Editorial · Selected

From the Maison's archive.

{/* Press CTA */}
Press Office

For interviews, imagery requests, and red-carpet coordination.

Press
{CONTACT.press}
General
{CONTACT.email}
); } function EditorialTile({ img, title, tag }) { const [hover, setHover] = useState(false); return (
setHover(true)} onMouseLeave={() => setHover(false)} style={{ margin: 0 }}>
{title}
{title}
{tag}
); } // ────────────────────────────────────────────────────────── // Contact page // ────────────────────────────────────────────────────────── function ContactPage({ setRoute, onAppointment }) { return (
Atelier · Showroom · Dubai Design District

Contact.

By private appointment only. Reach the Maison directly, or open an enquiry — we'll respond within one working day.

{CONTACT.mobile} }/> {CONTACT.landline} }/> {CONTACT.email} }/> {CONTACT.press} }/> {CONTACT.careers} }/> 10:00 – 18:00
Closed Fridays & UAE public holidays

}/>
Address

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

Open Map
{/* Right column: map placeholder + studio image */}
Atelier
{/* Map placeholder (we don't have a real pin) */}
Locator · d3
Building 4A · Office 203A
); } function ContactBlock({ title, content }) { return (
{title}
{content}
); } // Quietly stylized map mockup: cream paper with thin grid + an X for the pin. function MapMockup() { return ( {/* Streets */} {/* Buildings */} {[ [60, 60, 80, 60], [300, 80, 70, 50], [430, 60, 60, 70], [620, 100, 70, 50], [80, 280, 90, 50], [260, 280, 70, 50], [430, 290, 70, 50], [620, 280, 90, 50], [320, 380, 80, 50] ].map((b, i) => ( ))} {/* Highlighted building 4A */} 4A {/* Pin */} ); } window.PressPage = PressPage; window.ContactPage = ContactPage;