// Before/After (consent-gated), About, Contact pages // ============================================= // BEFORE / AFTER — Consent Gated // ============================================= function BeforeAfter({ go }) { const [accepted, setAccepted] = useState(false); const [agreed1, setAgreed1] = useState(false); const [agreed2, setAgreed2] = useState(false); return (
Before & After

Results shown with consent, never without.

Surgical before-and-after imagery is restricted in the UAE. We publish only with patient consent, in compliance with DHA/MOH advertising rules, and never with guaranteed-results language.

{!accepted ? (
Compliance Gate

This gallery is restricted by DHA/MOH advertising compliance.

To view before-and-after imagery you must confirm you are 18+, that you understand results are individual and not guaranteed, and that you accept our DHA/MOH-compliant viewing conditions.

setAgreed1(e.target.checked)} />
setAgreed2(e.target.checked)} />
) : ( <> {/* Real before/after pairs — shown at full aspect ratio after consent */}
{[ { img: 'media/clinic-band-1.webp', label: 'Lip Enhancement', detail: 'Dermal filler, single session', surgeon: 'Aesthetic Physician — DHA Licensed', note: 'Individual result. Outcomes vary by anatomy, candidacy and aftercare. Not a guarantee of any specific result.' }, { img: 'media/clinic-band-2.webp', label: 'Submental Contouring', detail: 'Non-surgical fat reduction · CoolSculpting protocol', surgeon: 'Treatment plan supervised by consultant', note: 'Individual result. Outcomes vary. Multiple sessions may be required.' } ].map((pair, i) => (
{`${pair.label}
Pair {String(i + 1).padStart(2, '0')} · {pair.label}
{pair.detail}
Performed by
{pair.surgeon}
{pair.note}
))}
More pairs — awaiting client-supplied media

The architecture is built. More images come from you.

To extend the gallery, the clinic supplies further consent-cleared, DHA/MOH-compliant before/after pairs — never imagery from another website, never without written patient consent.

Patient consent on file
No guaranteed-results language
Treatment and surgeon disclosed
Compliant with DHA/MOH advertising rules

Consent-cleared before/after pair · Procedure · Surgeon · Date

WEBP · Full aspect ratio preserved

{[3, 4, 5, 6, 7, 8].map(i => (

Pair #{String(i).padStart(2, '0')}

Locked

))}
)}
); } // ============================================= // ABOUT // ============================================= function About({ go }) { const milestones = [ { year: '1998', label: 'Dr Jaffer Khan begins practising plastic surgery in Dubai.' }, { year: '2011', label: 'Aesthetics International opens its Jumeirah villa.' }, { year: '2014', label: 'Dedicated body-contouring & energy-device suites added.' }, { year: '2019', label: 'Surgical suite expanded; ISAPS-member surgeons added to roster.' }, { year: '2023', label: 'Morpheus8 Pro and Ultherapy AI brought in-house.' }, { year: 'Today', label: 'A permanent in-house team across five care streams.' } ]; return (
Aesthetics International
About the Clinic

Founded in 2011.
Surgeon-led, ever since.

The Idea

A permanent team, a private villa.

Aesthetics International was founded to do one thing well: bring surgical plastic surgery and serious aesthetic medicine under one consistent roof, with the same clinical team day in, day out.

We sit inside Utamah Villa #1049c on Al Wasl Road — a discreet Jumeirah address, five treatment suites and a dedicated surgical area. The team is permanent, not a rotation; every practitioner is DHA-licensed and answerable for their own scope of practice.

We don't advertise "best" or "gold standard" — DHA/MOH rules don't allow it, and we think those words make patients suspicious anyway. What we will say: we've been doing this in Dubai since 2011, our surgeons are credentialed and named, and we discuss risk in full before any surgical procedure.

{/* Timeline */}

A quiet timeline.

Years matter in surgical practice. Below is ours, in brief.

{milestones.map((m, i) => (
{m.year}
{m.label}
))}
{/* Accreditations */}

Accreditations & memberships

Verified credentials only. We do not publish device-partner logos as awards, and we attribute editorial mentions as press — not accolades.

{[ { label: 'DHA Licensed', sub: 'Dubai Health Authority Polyclinic — establishment licence to verify' }, { label: 'ISAPS Members', sub: 'Among the surgical team. Verified per surgeon at consultation.' }, { label: 'Joint Royal Colleges', sub: 'Plastic surgery specialty fellowship — Dr Jaffer Khan' }, { label: 'Multi-Jurisdictional', sub: 'DHA · HAAD · DHCC · GMC (UK) — Dr Francisco De Melo' } ].map((a, i) => (
{a.label}
{a.sub}
))}
Visit

We're at Utamah Villa #1049c,
Al Wasl Road, Jumeirah.

); } // ============================================= // CONTACT // ============================================= function Contact({ go }) { return (
Contact

By appointment. Always discreet.

We're open Monday to Saturday by appointment. WhatsApp is the fastest way to reach reception — call or email for everything else.

Visit the Villa
{CLINIC_INFO.address.line1}
{CLINIC_INFO.address.line2}
{CLINIC_INFO.address.line3}
Visitor parking on Al Thanya Road. The villa is set back from Al Wasl Road behind a private wall.
Utamah Villa #1049c
25.14314°N · 55.20703°E
{/* Quick book inline */}
Or, the long way round

Send an enquiry and a consultant will call back.

We collect the minimum needed — name, contact, and the area you'd like to discuss. Medical history is taken at consultation, not online.

); } Object.assign(window, { BeforeAfter, About, Contact });