// Sections part 2 — treatments, wellness, doctors, before/after, locations, booking, footer. const { Icon: Icon2 } = window.NovaSections1; // ============ TREATMENTS — interactive area switcher ============ function TreatmentsBlock() { const [active, setActive] = React.useState(TREATMENT_AREAS[0].id); const [mode, setMode] = React.useState('area'); // 'area' | 'concern' const area = TREATMENT_AREAS.find(a => a.id === active); return (
— Treatments

A measured catalogue. Not a menu.

Every page covers what it is, candidacy, process, recovery and an honest FAQ. All consultations are doctor-led and consultation-first. No published pricing.

{/* mode switcher */}
{mode === 'area' ? ( <> {/* area tabs */}
{TREATMENT_AREAS.map(a => { const isActive = a.id === active; return ( ); })}
{/* active area panel */}
{area.label}

{area.label}

{area.blurb}

Treatments offered
{area.treatments.map((t, i) => ( {t.name} ))}
DHA / MOHAP-compliant treatment pages. No guaranteed outcomes; consultation-first.
) : ( /* concern grid */
{CONCERNS.map((c, i) => (
{c}
0{i + 1}
))}
)}
); } // ============ WELLNESS — differentiator ============ function WellnessBlock() { const [active, setActive] = React.useState(WELLNESS[0].id); const item = WELLNESS.find(w => w.id === active); return (
The differentiator

The wellness arm most aesthetic clinics don't have.

We run a regenerative-medicine and longevity programme out of the same clinics — IV therapy, NAD+, peptide protocols, exosomes, functional diagnostics. It's how aesthetics meets holistic wellness in practice, not just in a tagline.

{WELLNESS.map(w => { const isActive = w.id === active; return ( ); })}
{item.name}

{item.desc}

Talk to a wellness physician
); } // ============ DOCTORS ============ function DoctorsBlock() { return (
— Our doctors

Verified. Credentialled. Accountable.

We publish the three credential-verified surgeons below. The remaining roster of doctors and therapists is being re-verified against DHA licence checks before going live.

See full team
{DOCTORS.map((d, i) => )}
All practising doctors are licensed under the relevant Dubai Health Authority (DHA) framework. Per-doctor DHA licence numbers visible on each profile.
); } function DoctorCard({ d, idx }) { const [hover, setHover] = React.useState(false); return (
setHover(true)} onMouseLeave={() => setHover(false)} style={{ background: 'var(--paper)', border: '1px solid var(--line-soft)', overflow: 'hidden', position: 'relative' }}>
{d.name}
0{idx + 1} / Verified
{/* hover panel with bio */}

{d.bio}

{d.interests.map(i => ( {i} ))}
Languages · {d.languages.join(' · ')}

{d.name}

{d.role}
{d.cred}
{d.experience} Profile
); } window.NovaSections2 = { TreatmentsBlock, WellnessBlock, DoctorsBlock };