/* global React, PILLARS, CONCERNS, DOCTORS, FACT_STRIP, CONTACT, LogoMark, SectionHead, ComplianceBadge */ // Page components — Maison Lutétia Dubai const { useState } = React; // ===================== // HOME // ===================== const HomePage = ({ go, openBooking }) => { return (
{/* HERO */}
French aesthetic medicine · Dubai Festival City · Since 2018

The French art
of sublimer,
in Dubai.

The Dubai flagship of Maison Lutétia — a doctor-led aesthetic-medicine clinic in the Parisian tradition. Five medical pillars under one roof in Dubai Festival City. Sublimer, jamais changer — enhance, never change.

{FACT_STRIP.map((f, i) => (
{f.num}{f.unit}
{f.lbl}
))}
Maison Lutétia Dubai reception — printed-sky dome and Parisian-luxe interior
Reception · Dubai Festival City flagship
{/* Marquee */}
Sublimer, jamais changer Doctor-led European-trained DHA-regulated Dubai Festival City 14 treatment rooms · 1 VIP suite Sublimer, jamais changer Doctor-led European-trained DHA-regulated Dubai Festival City 14 treatment rooms · 1 VIP suite
{/* Five pillars */}
Five medical pillars,
one Parisian Maison.} lead="A complete, doctor-led aesthetic care under one roof. Browse by pillar or by concern." />
{PILLARS.map(p => (
go("pillar", p.id)}>
{p.num}
{p.title}
{p.short}
))}
{/* By concern */}
Or — browse by concern
What brings you here today?
{CONCERNS.map(c => (
go("pillar", c.pillars[0])}>{c.label}
))}
{/* Editorial split — flagship */}
Maison Lutétia Dubai entrance — gold signage
02 · The Dubai Flagship

A two-thousand-square-metre French clinic in Dubai Festival City.

Opened in 2018 and operated by Al-Futtaim, the Dubai Maison sits on the ground floor of Dubai Festival City Mall. Fourteen treatment rooms, an attached Le Salon, a majlis-style lounge, ladies-only spaces and a VIP suite with a private entrance.

The interior — a printed-sky dome, marble desks, a chandelier-lit reception — is the work of a Dubai fit-out studio drawing on Parisian Haussmann references. The clinic is DHA-regulated; doctors are European-trained.

{FACT_STRIP.map((f, i) => (
{f.num}{f.unit && {f.unit}}
{f.lbl}
))}
{/* Doctors teaser */}
Doctors who speak
your language — in every sense.} lead="European-trained, DHA-licensed, with a candidacy-led approach. We publish only verified team members." />
{DOCTORS.slice(0, 4).map(d => (
go("doctor", d.slug)}>
{d.name}
{d.name}
{d.role}
{d.licence}
))}

DHA · pending verification{" "} Each doctor's licence number, board certification and resident-vs-guest status is being verified before publication.

{/* CTA band */}
04 · Book a consultation

Begin with a conversation,
not a procedure.

Every Maison Lutétia pathway begins with a candidacy-led consultation. No price lists, no menus — your physician maps the protocol that suits your skin, your face, your goals.

Call · {CONTACT.phoneClinic}
WhatsApp · Dubai number pending verification
); }; // ===================== // TREATMENTS HUB // ===================== const TreatmentsPage = ({ go }) => { const [activeConcern, setActiveConcern] = useState(null); const filteredPillars = activeConcern ? PILLARS.filter(p => CONCERNS.find(c => c.id === activeConcern).pillars.includes(p.id)) : PILLARS; return (
Treatments · Five pillars + Le Salon

A complete French clinic.

Aesthetic Medicine, Dermatology, Plastic Surgery, Hair Transplant — DHI, and Longevity Medicine — five doctor-led pillars practised under one roof in Dubai Festival City. Plus Le Salon for beauty work.

Filter by concern
setActiveConcern(null)}>All
{CONCERNS.map(c => (
setActiveConcern(c.id)}>{c.label}
))}
{filteredPillars.map((p, idx) => (
0 ? "1px solid var(--line)" : "none", alignItems: "center" }}>
{p.title}
{p.num}
Pillar · {p.title.split(" ")[0]}

{p.title}

{p.short}

    {p.treatments.slice(0, 6).map(t => (
  • · {t.name}
  • ))}
))}
); }; // ===================== // PILLAR DETAIL // ===================== const PillarPage = ({ slug, go, openBooking }) => { const p = PILLARS.find(x => x.id === slug); if (!p) return
Not found.
; const relatedDoctors = DOCTORS.filter(d => d.pillar === p.id); return (
{/* Pillar hero */}
Pillar {p.num}
DHA-compliant copy

{p.title}

{p.short}

{p.titleFr}

{p.title}
{/* Treatments list */}
{p.treatments.map((t, i) => (
{String(i + 1).padStart(2, "0")}
{t.name}
{t.desc}
{t.duration} · By consultation
))}
{/* Process — 4-step */}
{[ { num: "i", title: "Consultation", body: "A 30–60 minute conversation with a physician. History, goals, candidacy, options. No procedure that day unless agreed." }, { num: "ii", title: "Bespoke protocol", body: "Your physician designs a pathway — single session, or a series spaced over weeks/months. No menus, no upselling." }, { num: "iii", title: "Treatment", body: "Performed by your physician (or, where appropriate, a senior nurse practitioner) in our treatment rooms or VIP suite." }, { num: "iv", title: "Follow-up & care", body: "Aftercare guidance, complimentary follow-up consultations, and a long-term plan. We measure results, not promises." } ].map((s, i) => (
Step {s.num}
{s.title}

{s.body}

))}
{/* FAQ */}
{[ { q: "Are prices listed online?", a: "No. Every Maison Lutétia pathway is candidacy-led, with the protocol and cost discussed transparently at consultation. Avoid clinics that quote medical procedures by SMS." }, { q: "Are results guaranteed?", a: "Aesthetic medicine cannot guarantee outcomes — DHA advertising rules forbid it, and so does our medical conscience. Your physician will discuss realistic expectations." }, { q: "Who performs the treatment?", a: "Your physician — in some cases, a senior nurse practitioner working under physician supervision. Surgery is performed by board-certified plastic surgeons only." }, { q: "Is the clinic licensed?", a: "Maison Lutétia Dubai is operated by Lutetia Br Of Al Futtaim Aesthetics Clinics, regulated by the Dubai Health Authority. DHA establishment licence available on request." } ].map((f, i) => (
{f.q}

{f.a}

))}
{/* Related doctors */} {relatedDoctors.length > 0 && (
{relatedDoctors.map(d => (
go("doctor", d.slug)}>
{d.name}
{d.name}
{d.role}
{d.licence}
))}
)}
); }; Object.assign(window, { HomePage, TreatmentsPage, PillarPage });