/* ============================================================ AACSH — Home page sections ============================================================ */ function HomePage({ onNavigate, onBook }) { return (
); } /* ------------------------------------------------------------ */ function Hero({ onNavigate, onBook }) { return (
JCI-accredited · DHCC Building 73, Dubai Healthcare City

Hospital-grade
cosmetic surgery,
delivered carefully.

A multi-specialty hospital in Dubai Healthcare City, anchored on cosmetic and plastic surgery and surrounded by ten medical, aesthetic and wellness departments — so every patient is cared for in one accredited environment.

10
Specialities
29+
Doctors · DHA-licensed
7/wk
09:00 — 21:00
{/* Image stack */}
AACSH consultation room
Building 73 · DHCC
The hospital floor
Surgical team at work
{/* JCI badge floater */}
Joint Commission International
First in DHCC to attain JCI · 2009
{/* Compliance microcopy */}
This site does not offer guaranteed results. · All surgical pages disclose risks. · Before & after only with verified patient consent.
); } /* ------------------------------------------------------------ */ function DepartmentGrid({ onNavigate }) { const depts = window.AACSH_DATA.departments; return (
Care under one roof

Ten specialities,
one accredited hospital.

Cosmetic & plastic surgery is our anchor. Around it sit nine supporting specialities — so a patient under one roof can be reviewed by dermatology, endocrinology and nutrition without leaving Building 73.

{depts.map((d, i) => ( onNavigate(`/departments/${d.slug}`)} /> ))}
); } function DepartmentCard({ dept, large, onClick }) { return ( ); } /* ------------------------------------------------------------ */ function DoctorsRow({ onNavigate }) { const doctors = window.AACSH_DATA.doctors; return (
A roster you can verify

Consultants with credentials we publish openly.

Twenty-nine clinicians across ten specialities. Each profile lists training, years of experience and the DHA Sheryan licence under which they practise — the same registry the Health Authority publishes.

{doctors.slice(0, 4).map(doc => ( onNavigate(`/doctors/${doc.slug}`)} /> ))}
); } function DoctorCard({ doc, onClick }) { const deptName = window.AACSH_DATA.departments.find(d => d.slug === doc.depts[0])?.name; return ( ); } /* ------------------------------------------------------------ */ function SafetyBand() { return (
Safety, plainly

We talk about
risk before result.

); } function SafetyPoint({ n, h, p }) { return (
{n}
{h}

{p}

); } /* ------------------------------------------------------------ */ function MedicalTourismTeaser({ onNavigate }) { return (
Recovery suite
Patient suites
Single-room recovery with full nursing cover
For international patients

Travel for treatment,
cared for end-to-end.

Visa support, airport transfer, accommodation coordination, multilingual liaison and structured pre- and post-operative care — handled by a dedicated medical-tourism team.

); } function TourismFeature({ label, sub, icon }) { return (
{label}
{sub}
); } function FeatureIcon({ icon }) { const s = { width: 18, height: 18, color: "var(--plum)" }; if (icon === "globe") return ( ); if (icon === "passport") return ( ); if (icon === "suite") return ( ); return ( ); } /* ------------------------------------------------------------ */ function BeforeAfterPlaceholderTeaser({ onNavigate }) { return (
Before & after

Real outcomes, shown responsibly.

We publish patient imagery only where written consent has been recorded and the surrounding context complies with UAE Ministry of Health advertising rules. The gallery is intentionally narrow — a small number of fully-permissioned cases, never marketing thumbnails.

Consent-gated. Each case is approved by the patient and reviewed for MOH advertising compliance before publication. No before-and-after appears here without both.
); } function ConsentLockedTile({ label }) { return (
Consent locked
{label}
); } /* ------------------------------------------------------------ */ function ProcessRow() { const steps = [ { n: "01", t: "Make an appointment", d: "Pick a department, date and time. Minimal details — never medical history." }, { n: "02", t: "Consultation", d: "Face-to-face or video. Candidacy, options, recovery and risks discussed honestly." }, { n: "03", t: "Treatment plan", d: "A written plan with the surgeon or clinician responsible for your care." }, { n: "04", t: "Procedure", d: "In a JCI-accredited operating environment, surrounded by hospital nursing." }, { n: "05", t: "Follow-up", d: "Recovery monitored at scheduled intervals; international patients via secure video." }, ]; return (
The pathway

From enquiry to follow-up.

{steps.map((s, i) => (
{s.n}
{s.t}

{s.d}

))}
); } /* ------------------------------------------------------------ */ function ContactBand({ onBook }) { const c = window.AACSH_DATA.contact; return (

Ready when you are.

A coordinator answers every appointment request within one business hour. Or speak to us directly — we're open seven days a week.

{c.phone}
Visit the hospital
{c.address}
{c.addressLine2}
HOURS
{c.hours}
EMAIL
{c.email}
); } Object.assign(window, { HomePage });