/* === Showrooms, Heritage, Visit pages === */ function Showrooms({ openConsult, openWA }) { const D = window.MONILI; const [activeId, setActiveId] = useState(D.showrooms[0].id); const active = D.showrooms.find(s => s.id === activeId); return (
Visit · Three Showrooms

Come and be received.

Our flagship sits inside Gold & Diamond Park — Dubai's jewellery district. Two further boutiques sit inside Souk Madinat Jumeirah, by the water.

{D.showrooms.map(s => ( ))}
{/* Active showroom detail */}
{active.name} {active.flagship && ( Flagship )}
{/* Map block */}
{active.label || "Showroom"}

{active.name}

{active.flagship ? "Our original showroom and design atelier, opened in 2005 and the home of our in-house factory. The full bespoke team — designers, setters, polishers — works here under one roof." : "A quieter, intimate showroom inside Souk Madinat Jumeirah — convenient for guests staying along Jumeirah Beach. Personalised viewings by appointment or walk-in."}

{active.shop}
{active.address}}/> {active.phone}} icon="phone"/> {active.mobile && } onlinesales@monilijewellers.com} icon="mail"/>
Call This Showroom
{/* All three at-a-glance */}
At a Glance

Three doors. One house.

{D.showrooms.map(s => (
{ setActiveId(s.id); window.scrollTo({ top: 0, behavior: "smooth" }); }}>
{s.name}/ {s.flagship ? "Flagship" : s.label}
))}
); } function DetailRow({ label, value, icon }) { return (
{icon && } {label} {value}
); } function MapBlock({ showroom }) { const mapQuery = encodeURIComponent(showroom.mapQuery || `${showroom.name} ${showroom.shop} ${showroom.address}`); const mapUrl = showroom.mapUrl || `https://www.google.com/maps/search/?api=1&query=${mapQuery}`; return (