/* Hortman Clinics — primary components */ const { useState, useEffect, useRef, useMemo } = React; /* ---------- Icons (drawn inline; simple geometric shapes only) ---------- */ const Icon = ({ name, size = 18, stroke = 1.4 }) => { const common = { width: size, height: size, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }; const icons = { arrow: , arrowDown: , close: , check: , phone: , whatsapp:, pin: , clock: , mail: , lock: , spark: , shield: , cal: , info: , /* Specialty icons — abstract, not literal/medical */ sp_aesthetics: , sp_lasers: , sp_derm: , sp_plastic: , sp_dent: , sp_hair: , sp_gynae: , sp_wellness: }; return icons[name] || null; }; const specialtyIcon = (id) => { const m = { aesthetics: "sp_aesthetics", lasers: "sp_lasers", dermatology: "sp_derm", plastic: "sp_plastic", dentistry: "sp_dent", hair: "sp_hair", gynae: "sp_gynae", wellness: "sp_wellness" }; return m[id] || "spark"; }; /* ---------- Brand wordmark (original treatment, not raster logo) ---------- */ const BrandWordmark = ({ small = false }) => (
HORTMAN
CLINICS
); /* ---------- Top bar ---------- */ const TopBar = ({ onBook, lang, setLang, onOpenSpecialty }) => { const [megaOpen, setMegaOpen] = useState(false); const navRef = useRef(null); useEffect(() => { const onClick = (e) => { if (navRef.current && !navRef.current.contains(e.target)) setMegaOpen(false); }; document.addEventListener("click", onClick); return () => document.removeEventListener("click", onClick); }, []); return (
 Two locations · Dubai ·  {window.HC_DATA.contact.hours}
{window.HC_DATA.contact.phone} · WhatsApp
  • {megaOpen && (
    e.stopPropagation()}>

    Care, organised by specialty

    Eight specialty areas across two Dubai locations. Every treatment listed is assessed in consultation — no procedure is booked without specialist review.

    )}
); }; /* ---------- Hero ---------- */ const Hero = ({ onBook }) => (
Multi-specialty · Specialist-led · Dubai

Considered care.
Quietly luxurious
clinical practice.

Hortman Clinics is a multi-specialty group across two Dubai locations — aesthetics, dermatology, plastic surgery, dentistry, hair transplant, gynaecology and wellness. Every plan begins with consultation, not a price list.

{e.preventDefault(); document.getElementById("specialties")?.scrollIntoView({behavior:"smooth"});}}> Browse specialties
Treatment room interior, Hortman Clinics
Independently verified
Dr. Sezgin Cagatay · Hair Transplant
DHA · DHCC
8
Specialty areas
2
Dubai locations
EN · AR · RU
Patient languages
Consultation-first
No procedures without assessment
); /* ---------- Specialties grid + slide-out detail ---------- */ const Specialties = ({ openId, setOpenId, onBook }) => { const data = window.HC_DATA.specialties; const active = data.find((s) => s.id === openId); return (
Specialties

One group,
eight specialties.

Each specialty is led by named clinicians and supported by shared diagnostics, theatre and recovery facilities at our Sheikh Zayed Road flagship. Tap a card to see treatments within that area — every listed treatment is assessed in consultation before it is offered.

{data.map((s) => ( ))}
{active && (
Specialty · {active.num}

{active.desc}

{active.treatments.map((t) => ( ))}
Ask on WhatsApp

)}
); }; /* ---------- Treatment journey ---------- */ const Journey = () => { const [open, setOpen] = useState(0); const steps = window.HC_DATA.journey; return (
Treatment journey

The same five steps,
for every patient.

Whether the conversation starts in aesthetics, surgery, dentistry or wellness, the journey is the same shape — a consultation, an honest assessment, a written plan and a follow-up by the same specialist who saw you first.

Clinic lounge, Hortman Clinics
Patient lounge · Sheikh Zayed Road
{steps.map((s, i) => (
setOpen(open === i ? -1 : i)} >
0{i+1}
{s.title}
{s.body}
{open === i ? "−" : "+"}
))}
); }; /* ---------- Doctors ---------- */ const Doctors = ({ onSelect }) => { const [filter, setFilter] = useState("all"); const doctors = window.HC_DATA.doctors; const filtered = filter === "all" ? doctors : doctors.filter((d) => d.specialty.toLowerCase().includes(filter)); const filters = [ ["all", "All"], ["plastic", "Plastic Surgery"], ["dermatology", "Dermatology"], ["hair", "Hair"], ["dent", "Dentistry"], ["wellness", "Wellness"] ]; return (
Specialists

Named clinicians.
Verified credentials.

We publish each clinician's specialty, DHA licence number and relevant memberships. Profiles marked verified have been independently confirmed; others are pending verification before their full credentials are publicly listed.

{filters.map(([k, label]) => ( ))}
{filtered.map((d) => ( ))}
); }; /* ---------- Before & After (consent locked) ---------- */ const BeforeAfter = ({ onRequest }) => { return (
Before & After Gallery

Results, shown
only with consent.

Patient before-and-after imagery is held back from public display until two conditions are met — explicit written patient consent for the specific image, and review against DHA advertising standards.

In compliance with UAE Dubai Health Authority advertising regulations, this gallery is gated. Verified prospective patients can request consented case examples relevant to their treatment area.
Discuss on WhatsApp
{["Hair Transplant", "Skin Boosters", "Rhinoplasty", "Veneers"].map((t) => (
Consent-gated
{t}
))}
); }; /* ---------- Reviews ---------- */ const Reviews = () => { const r = window.HC_DATA.reviews; return (
{r.verified ? ( <>
{r.score}/5
★ ★ ★ ★ ★
Across {r.count} Google reviews · {r.source}
) : ( <>
Rating pending live confirmation
Aggregator suggests {r.score}/{r.count}
)}
{r.quotes.map((q, i) => (
"{q.text}" {q.cite}
))}
Verified live · attributed
); }; /* ---------- Locations ---------- */ const Locations = ({ onBook }) => (
Locations

Two clinics,
both in Dubai.

Our Sheikh Zayed Road flagship houses the full multi-specialty offer including surgical suites. The Jumeirah boutique focuses on aesthetics, dermatology and wellness in a residential setting.

{window.HC_DATA.locations.map((l) => (
{l.name
{l.tag}
{l.name}
{l.sub}
Address
{l.address}
Hours
{l.hours}
Reception
{l.phone}
Services
{l.services}
Map & directions
))}
); /* ---------- CTA band ---------- */ const CTABand = ({ onBook }) => (
Speak with a specialist

Your consultation is the
start of the treatment.

Bring your concern, your medical history and your questions. We will be honest about candidacy — including treatments not suitable for you.

WhatsApp the clinic
); /* ---------- Footer ---------- */ const Footer = () => ( ); /* ---------- WhatsApp FAB ---------- */ const Fab = ({ onBook }) => (
); /* Expose to other Babel scripts */ Object.assign(window, { HC: { Icon, BrandWordmark, TopBar, Hero, Specialties, Journey, Doctors, BeforeAfter, Reviews, Locations, CTABand, Footer, Fab, specialtyIcon } });