/* === Home page === */ function Home({ setPage, openConsult }) { const D = window.MONILI; const [tIdx, setTIdx] = useState(0); useEffect(() => { const t = setInterval(() => setTIdx(i => (i + 1) % D.testimonials.length), 6800); return () => clearInterval(t); }, []); const featured = ["six-prong-solitaire", "cushion-halo", "tennis-bracelet", "ruby-halo", "pave-eternity", "tennis-chain", "halo-stud", "sapphire-halo"] .map(id => D.pieces.find(p => p.id === id)); return (
{/* === HERO === */}
Custom Masterpieces · Dubai · Since 2005

Custom masterpieces,
crafted in Dubai
since 2005.

Certified diamonds, bespoke design, and no-pressure guidance from our in-house designers — Gold & Diamond Park and Souk Madinat Jumeirah.

5.0 Tripadvisor · 107 reviews
#11 of 905 Shopping · Dubai
GIA · IGI Certified, every diamond
Monili fine jewellery composition
Showroom 01 Gold & Diamond Park Shop 58, Building 4 · Sheikh Zayed Road
No pressure · No rush · No obligation
{/* === FEATURED COLLECTIONS === */}
Atelier Selections

A curated house selection.

Pieces from our flagship cases — engagement, eternity, tennis bracelets and gemstone halos. Every piece can be made yours: re-stoned, resized, or reimagined entirely as a bespoke commission.

{featured.map((p, i) => (
setPage("collections")}>
{p.tag && {p.tag}} {p.name}/
{p.name}
{p.spec}
Enquire · Price on Request
))}
{/* === BESPOKE TEASER === */}
The Bespoke Journey

Made for one. Made by hand.

Bring a stone, a sketch, an idea, or a piece of inherited gold. From the first consultation to the final reveal, your commission stays under one roof — designed, cast, set and polished in our own Dubai atelier.

{D.bespoke.map(s => (
setPage("bespoke")}> — {s.num} {s.name} {s.blurb}
))}
{/* === HERITAGE SPLIT === */}
Inside the Monili atelier
Established
2005
Founded in Gold & Diamond Park by Panky Karamchandani & Vipul Gor.
Our Heritage

A Dubai jewellery house, founder-led to this day.

Twenty years ago, two friends opened a single workshop in Gold & Diamond Park with a simple idea: fine jewellery should be made under one roof, by people you can speak to by name. That idea is still our practice. Every certified diamond, every commission, every quiet repair passes through our own atelier — and very often, the same hands that began with us in 2005.

{/* === TESTIMONIALS === */}
In Our Clients' Words

{D.testimonials[tIdx].quote}

— {D.testimonials[tIdx].name} {D.testimonials[tIdx].source}
{D.testimonials.map((_, i) => (
{[0,1,2,3,4].map(i => )} 5.0 / 5
A near-perfect record across 107 verified reviews — ranked #11 of 905 shopping destinations in Dubai.

Recurring praise: no pressure, named advisors (Deepak · Rahul · Imran), exceptional craftsmanship, and long client relationships of fifteen years and more.

Read on Tripadvisor
{/* === SHOWROOM PICKER === */}
Three Private Showrooms

Come and be received.

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

{D.showrooms.map(s => (
setPage("showrooms")}>
{s.name}/ {s.flagship ? "Flagship" : s.label}
))}
{/* === END CTA === */}
The Personal Way to Buy Fine Jewellery

Sit with a designer.
Leave with a story.

Every consultation is private, complimentary and without obligation. You walk in with an idea — you leave with sketches, certified options and an itemised quote.

); } window.Home = Home;