// pages.jsx — page components for Montroi const { Navbar, Footer, ProductCard, SectionHeading, CTA, Ic, Logo } = window.MONTROI_COMP; const { PRODUCTS, ATELIERS, WORKSHOPS, BOUTIQUES } = window.MONTROI_DATA; const byCategory = (cat) => PRODUCTS.filter(p => p.category === cat); const find = (handle) => PRODUCTS.find(p => p.handle === handle); // ═════════════════════════════════════════════════════════════ // HOME // ═════════════════════════════════════════════════════════════ function PageHome({ navigate, addToCart, hero }) { return (
); } // ── Hero (3 layouts via Tweaks: editorial / split / quiet) ───────── function Hero({ hero, navigate }) { if (hero === "split") return ; if (hero === "quiet") return ; return ; } function HeroEditorial({ navigate }) { return (
Vol. XII — Spring/Summer · Dubai

The most valuable
possessions are those
with stories to tell.

Soft leather goods, perfumery and artisanal objects, made with master artisans across the world. A philosophy of modern nomadism, set down in Dubai since 2014.

navigate("/shop")}>Explore the collections navigate("/workshops")}>Book a workshop
20+ Workshops worldwide 14 Grasse-made scents · One&Only WH 49 Alserkal Avenue · Dubai
Sand-coloured travel box
Travel Box, Sand — Bergamo workshop, vegetable-tanned hide.
Tribal Oud travertine diffuser
Tribal Oud XL · travertine, 500ml.
MONTROIEST. MMXIVDUBAI
); } function HeroSplit({ navigate }) { return (
Tobacco backpack
A house of modern nomadism

Made slowly,
made everywhere,
brought home.

A luxury house with 20+ workshops worldwide — from Grasse to Jebel Akhdar to Jaipur to Ubrique. Travel journals, leather, fragrance and objects, each one with a place behind it.

navigate("/shop")}>Shop the collection navigate("/provenance")}>Visit the ateliers
); } function HeroQuiet({ navigate }) { return (
Montroi — Dubai · est. 2014

The most valuable
possessions are those
with stories to tell.

navigate("/shop")}>Enter the collection navigate("/story")}>The Montroi story
Suede pouch · Ubrique
Mughal Jade · Carrara
Lotus papermache · Jaipur
Mughal Incense · Grasse
); } // ── Marquee of places (slow, decorative) ─────────────────────────── function MarqueeStrip() { const places = ["Grasse", "Jebel Akhdar", "Jaipur", "Ubrique", "Marrakech", "Bergamo", "Dubai", "Valencia", "Tivoli", "Carrara"]; const row = places.concat(places); return ( ); } // ── Story preview ────────────────────────────────────────────────── function StoryPreview({ navigate }) { return (
I. The Montroi Story

A return to the old ways
craft, provenance, longevity.

Montroi was founded in Dubai in 2014 by Enrique Hormigo and Samir Aghera, and named after the small Valencian town that once sat on the Silk Road. It is a house of modern nomadism: a slow, story-led answer to fast consumption.

We work with more than twenty workshops across the world — chosen for excellence, authenticity and cultural roots. Every piece is a small travel journal of its own.

navigate("/story")}>Read the story
); } // ── Provenance feature (4 atelier cards in editorial layout) ─────── function ProvenanceFeature({ navigate }) { return (
Four journeys. One thread.} lede="The journal is written across continents — by perfumers, distillers, leather masters and metalsmiths. Each Montroi piece is signed, in some quiet way, by the place it came from." />
{ATELIERS.map((a, i) => (
{String(i + 1).padStart(2, "0")} {a.discipline}

{a.place} {a.country}

{a.summary}

))}
); } // ── Drops block (three editorial collections) ────────────────────── function DropsBlock({ navigate, addToCart }) { const drops = [ { key: "leather", eyebrow: "III · Leather", title: "The Travel Library", copy: "Soft leather goods made in Ubrique, Marrakech and Bergamo. Bags made in Italy. Hand-cut, saddle-stitched, made to age.", picks: ["leather-travel-box-beige", "leather-carthage-backpack-brown", "leather-pouch-suede"], bg: "var(--surface)", }, { key: "fragrance", eyebrow: "IV · Fragrance", title: "Composed in Grasse", copy: "Fragrances made by master perfumers in the world capital of perfumery — including fourteen scents for One&Only.", picks: ["mughal-incense-edp", "tribal-oud-diffuser", "per-fumum-ritual"], bg: "color-mix(in oklch, var(--surface) 50%, var(--bg))", }, { key: "home", eyebrow: "V · Home & Objects", title: "Nomad Craft", copy: "Hand-shaped clay, brass and papermache from Jaipur. Marble vessels from Carrara. Quiet rituals for the table.", picks: ["nomad-craft-pot", "mughal-jade-diffuser", "nomad-brass-pot"], bg: "color-mix(in oklch, var(--bg) 70%, var(--surface))", }, ]; return (
Three drops. One journal.} lede="Read each chapter, or wander between them. Prices are listed in USD, exactly as they appear in the live catalogue." />
{drops.map((d) => (
{d.eyebrow}

{d.title}

{d.copy}

navigate(`/shop/${d.key}`)}>Open the chapter
{d.picks.map(handle => { const p = find(handle); if (!p) return null; return ; })}
))}
); } // ── Workshops teaser ─────────────────────────────────────────────── function WorkshopsTeaser({ navigate }) { return (
VI · The Atelier

Spend an afternoon making something
at the Alserkal flagship.

{WORKSHOPS.map((w, i) => (
No. {String(i + 1).padStart(2, "0")}

{w.title}

Duration
{w.duration}
Seats
{w.seats}

{w.summary}

))}
); } // ── One&Only strip ───────────────────────────────────────────────── function OneOnlyStrip({ navigate }) { return (
A partnership

One&Only × Montroi

Fourteen fresh, unique scents — hand-crafted in Grasse — composed for the resorts of One&Only. Each fragrance is a small portrait of a place: an island, a desert, a coast.

  • 14 Signature scents
  • 100ml Eau de parfum — $180
  • 10ml Travel format — $32
navigate("/shop/fragrance")}>Browse the collection
); } // ── Concierge band ───────────────────────────────────────────────── function ConciergeBand({ navigate }) { return (
VII · Concierge

Gifts commissioned,
not chosen.

For occasions that ask for more: monogrammed leathers, bespoke fragrance, curated sets delivered worldwide. Tell us the recipient, the occasion and the budget — our concierge will write back, by hand, within one working day.

navigate("/gifting")}>Open a gifting enquiry
  • 01MonogramFoil or blind, three letters.
  • 02Bespoke fragranceA nose, a brief, a 50ml bottle.
  • 03Hand-painted leatherOne-of-one art on card or wallet.
  • 04Curated setA library of objects, written for them.
); } // ── Boutique invite ──────────────────────────────────────────────── function BoutiqueInvite({ navigate }) { return (
Come visit.} lede="The Alserkal flagship opened in early 2025: a working atelier as much as a shop — perfume blending, scent workshops, leather hand-painting, weekly." align="center" />
{BOUTIQUES.map((b) => (

{b.name}

{b.address}
{b.city}

Hours. {b.hours}

{b.note}

))}
); } // ── Journal preview ──────────────────────────────────────────────── function JournalPreview() { const entries = [ { tag: "Letter from Grasse", date: "May 2026", title: "Composing the third One&Only chapter.", img: "media/product-bosphorus-room-scent.webp" }, { tag: "Letter from Oman", date: "April 2026", title: "Twelve days at the Damask-rose harvest.", img: "media/product-himalayan-orchid-reed-oil.webp" }, { tag: "Letter from Jaipur", date: "March 2026", title: "Five hands on a single iron pot.", img: "media/product-nomad-handpainted-iron-pot-set.webp" }, ]; return (
IX · The Journal

Letters from the workshops.

{entries.map((e, i) => (
{e.tag} · {e.date}

{e.title}

))}
); } window.MONTROI_PAGES_HOME = { PageHome };