// ============ Screens: Home, Specialties, Treatment, Doctors, DoctorProfile, About, Contact ============ const { useState } = React; /* ----------------- HOME ----------------- */ function HomeScreen({ setRoute, onBook }) { const D = window.EUROMED_DATA; return (
{/* Hero */}
Multi-specialty clinic · Jumeirah

A family medical
& cosmetic clinic,
under one roof.

Dermatology, plastic surgery, hair transplant, dental, OB/GYN, family medicine and wellness — provided by named, DHA-licensed practitioners on Jumeirah Beach Road since February 2010.

{D.TRUST_ITEMS.map((t, i) => (
{t.v}
{t.l}
))}
Euromed Clinic consultant
Open today, by appointment {D.CONTACT.hoursNote}
{/* Concerns by chip */}
Treat by concern
{D.CONCERNS.map((c) => ( ))}
{/* Specialty grid */}
Departments

Six specialties.
One trusted team.

A multi-specialty roster lets us coordinate across departments — your dermatologist, dentist and family physician share notes on the same record so care joins up.
{D.SPECIALTIES.map((s) => (
setRoute({ name: "specialties", focus: s.id })}>
{s.no} / 06
{s.name}
    {s.treatments.slice(0, 4).map((t) =>
  • {t}
  • )}
))}
{/* Doctor teaser */}
Named practitioners

Doctors with verifiable
credentials.

Every practitioner on this page carries a DHA licence we publish openly. Visiting consultants are flagged so you always know whether your specialist is in-house or on rotation.
{D.DOCTORS.slice(0, 4).map((d) => (
setRoute({ name: "doctor", id: d.id })}>
{d.name}
{d.visiting ? "Visiting" : "In-house"}

{d.name}

{d.credentials}

{d.specialty} {d.licenceStatus === "verified" ? "DHA ✓" : "DHA pending"}
))}
{/* Treatment journey teaser */}
A treatment journey

What it actually looks like.

No guaranteed-results language, no surprise pricing. Each treatment page lays out candidacy, the procedure itself, recovery timelines, and the questions patients actually ask.
Hair Transplant · FUE

A doctor-supervised, minimally invasive technique for restoring natural hair density.

Five-step journey from consultation to twelve-month review. Local anaesthesia, single-day procedure.

{EUROMED_DATA.TREATMENT_FUE.steps.slice(0, 4).map((s) => (
{s.no}
{s.title}
))}
{/* Before/after locked */}
Before & after

Shown only with patient
consent.

We don't publish before-and-after imagery without each patient's signed consent and compliance with DHA/MOH advertising guidance. When you book, your consultant will share consented examples in person.

Gallery is consent-gated

Patient outcome photography is only displayed during in-person consultation, with the patient's written consent and in line with UAE medical advertising rules.

{/* CTA band */}
Visit Euromed

Free initial consultation —
in person, by phone or WhatsApp.

Message us
); } /* ----------------- SPECIALTIES HUB ----------------- */ function SpecialtiesScreen({ setRoute, onBook }) { const D = window.EUROMED_DATA; return (
Departments

Six specialties.
One coordinated record.

Browse our departments below, or jump to a treatment journey. Every treatment page covers candidacy, the procedure itself, expected recovery and the most-asked questions.

{D.SPECIALTIES.map((s) => (
{s.name}
{s.no} / 06 {s.treatments.length} treatments

{s.name}

{s.intro}

{s.treatments.slice(0, 3).map((t) => ( {t} ))}
))}
A note on copy: per DHA/MOH advertising guidance we don't use guaranteed-result language or "best in city" superlatives, and we don't run the "1 Dirham hair transplant" promotional hook. Pricing is by consultation — your consultant will give a transparent, written quote.
); } window.HomeScreen = HomeScreen; window.SpecialtiesScreen = SpecialtiesScreen;