// Procedures hub + Procedure detail + Surgeons list + Surgeon profile + Before/After + About + Contact // ============================================= // PROCEDURES HUB // ============================================= function ProceduresHub({ go, areaId }) { const [filter, setFilter] = useState(areaId || 'all'); const [view, setView] = useState('grid'); // grid | list const visibleAreas = filter === 'all' ? PROCEDURE_AREAS : PROCEDURE_AREAS.filter(a => a.id === filter); return (
Procedures

Surgical, non-surgical, all under one roof.

Browse by treatment stream, or start with the concern that brought you here. Every procedure page covers candidacy, process, recovery and — for surgical work — disclosed risks.

Filter {PROCEDURE_AREAS.map(a => ( ))}
{/* Surgical advisory band */} {visibleAreas.some(a => a.surgical) && (
Surgical procedures are performed only after a paid in-person consultation, candidacy assessment and disclosure of risks. By DHA-licensed surgeon, no guaranteed results.
)}
{visibleAreas.map(area => (
— {area.num} · {area.surgical ? 'Surgical & allied' : 'Non-surgical'}

{area.title}

{area.blurb}

{area.treatments.map((t, i) => ( ))}
))}
); } // ============================================= // PROCEDURE DETAIL PAGE // ============================================= function ProcedureDetail({ go, slug }) { const p = PROCEDURE_DETAIL; const [activeSection, setActiveSection] = useState('overview'); const [openFaq, setOpenFaq] = useState(0); const sections = [ { id: 'overview', label: 'Overview', num: '01' }, { id: 'candidacy', label: 'Candidacy', num: '02' }, { id: 'process', label: 'Process', num: '03' }, { id: 'recovery', label: 'Recovery', num: '04' }, { id: 'risks', label: 'Risks', num: '05' }, { id: 'faqs', label: 'FAQs', num: '06' } ]; const matchedSurgeon = DOCTORS.find(d => d.slug === 'jaffer-khan'); return (
{p.title}
{p.title}
Surgical · Plastic Surgery

{p.title} — {p.subtitle}

{p.lede}

{p.meta.map(m => (
{m.label}
{m.value}
))}

Overview

{p.lede}

Rhinoplasty is performed by a DHA-licensed Consultant Plastic Surgeon following an in-person consultation, photographic facial analysis and a discussion of candidacy, expectations and risks. We never proceed without that conversation, and we will tell you honestly if surgery is not the right answer.

At Aesthetics International, rhinoplasty is offered as part of the surgical Plastic Surgery stream led by Dr Jaffer Khan, with surgical procedures performed in our DHA-licensed villa setting on Al Wasl Road.

Candidacy

Suitability is decided in consultation. The points below are indicative.

    {p.candidacy.map((c, i) => (
  • {String(i + 1).padStart(2, '0')} {c}
  • ))}

Process

From consultation through to the day of surgery.

    {p.process.map((c, i) => (
  • {String(i + 1).padStart(2, '0')} {c}
  • ))}

Recovery

A general timeline — individual recovery varies. Your surgeon will discuss yours in detail.

    {p.recovery.map((c, i) => (
  • {String(i + 1).padStart(2, '0')} {c}
  • ))}

Risks & Considerations

Surgery carries risk. Below is a non-exhaustive list discussed in full at consultation, where alternatives are also considered. No procedure is offered as risk-free or with guaranteed results.

Mandatory disclosure · Surgical
    {p.risks.map((r, i) =>
  • {r}
  • )}

Frequently asked

{p.faqs.map((f, i) => (

{f.a}

))}
Next step
Book a consultation to discuss your candidacy.
); } // ============================================= // SURGEONS LIST // ============================================= function Surgeons({ go }) { const [filter, setFilter] = useState('all'); const list = DOCTORS.filter(d => filter === 'all' || (filter === 'surgeons' ? d.isSurgeon : !d.isSurgeon)); return (
Surgeons & Doctors

A permanent in-house team, named and credentialed.

Every practitioner is published with credentials and DHA licensure. Surgical procedures are performed only by DHA-licensed surgeons matched to your specific procedure.

{[ { id: 'all', label: 'Full Team' }, { id: 'surgeons', label: 'Surgeons & Aesthetic Physicians' }, { id: 'allied', label: 'Allied & Wellness' } ].map(f => ( ))}
{list.map(d => ( ))}
); } // ============================================= // SURGEON PROFILE // ============================================= function SurgeonProfile({ go, slug }) { const d = DOCTORS.find(x => x.slug === slug) || DOCTORS[0]; return (
{d.name}
{d.name}
DHA Verification
{d.dha}
Verify on DHA Sheryan Registry
{d.role}

{d.name}

{d.title}

{d.bio}

Training
{d.trained}
Experience
{d.experience}
Areas of Practice
{d.specialties.map(s => {s})}
WhatsApp the clinic

Other members of the clinical team

Aesthetics International operates as a permanent in-house team. Procedures are matched to the right practitioner.

{DOCTORS.filter(x => x.slug !== d.slug).slice(0, 4).map(o => ( ))}
); } Object.assign(window, { ProceduresHub, ProcedureDetail, Surgeons, SurgeonProfile });