// Sections part 3 — Before&After consent gate, Locations, Booking flow, About, Footer. const { Icon: Icon3 } = window.NovaSections1; // ============ BEFORE & AFTER — consent-gated placeholder ============ function BeforeAfterBlock() { const [unlocked, setUnlocked] = React.useState(false); return (
— Results, on our terms

A before & after gallery, only when consent allows.

Outcome photography is held back until patients have consented in writing and the imagery clears DHA / MOHAP advertising review. We won't republish historical clinic photos that weren't captured under the current consent framework.

Written patient consent on file before publication. Identical lighting, distance, expression — no retouching. Procedure, recovery window and practitioner attributed. Outcomes presented as examples, never as guarantees.
{/* Locked split */}
{!unlocked && ( <>
Consent-gated gallery
To view consented before / after imagery, confirm you understand outcomes vary and are not guaranteed.
)}
{/* "consented" badges when unlocked */} {unlocked && ( <>
Before · consented
After · 12 weeks
Rhinoplasty · Dr Jaffer Khan Example outcome · not a guarantee
)}
); } function Bullet({ children }) { return (
{children}
); } // ============ LOCATIONS ============ function LocationsBlock() { const [active, setActive] = React.useState(BRANCHES[0].id); const b = BRANCHES.find(x => x.id === active); return (
— Three branches in Dubai

Find us along the coast.

{BRANCHES.map(br => ( ))}
{b.name} {/* simulated map dot in corner */}
{b.short}

{b.name}

{b.short}
{b.phone}} /> +971 58 585 7688} />

{b.note}

Call this branch Book here
{/* compliance + licence block */}
Licensing
DHA-licensed clinic facility. MOHAP advertising permit on file. Per-doctor DHA licence numbers visible on doctor profiles.
Group lineage
The Nova Clinic by Aesthetics opened ~2017. Sister to Aesthetics International (est. 2011, Dubai), founded by Dr Jaffer Khan.
Compliance
We do not publish guaranteed outcomes, pricing, or unverified aggregate review scores. All consultations are doctor-led.
); } function DataRow({ label, value, multiline }) { return (
{label}
{value}
); } // ============ BOOKING — multi-step form ============ function BookingBlock({ openSignal }) { const [step, setStep] = React.useState(1); const [data, setData] = React.useState({ treatment: '', branch: BRANCHES[0].id, name: '', email: '', phone: '', notes: '', contactMode: 'whatsapp', }); const formRef = React.useRef(null); React.useEffect(() => { if (openSignal > 0) { formRef.current?.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }, [openSignal]); const update = (k, v) => setData(d => ({ ...d, [k]: v })); const next = () => setStep(s => Math.min(4, s + 1)); const prev = () => setStep(s => Math.max(1, s - 1)); const TREATMENT_OPTIONS = [ 'Aesthetic consultation', 'Plastic surgery enquiry', 'Wellness / longevity', 'Diagnostics & functional testing', 'Not sure yet' ]; return (
— Book a consultation

The first step is a conversation, not a procedure.

A team member will respond within one business day. We keep this form minimal — please share clinical detail only at the in-person consultation.

Prefer to speak to us directly?
{/* progress */}
{[1,2,3,4].map(i => (
))}
Step {step} / 4 {step === 4 && '· Confirmation'}
{step === 1 && (

What are you considering?

{TREATMENT_OPTIONS.map(t => ( ))}
)} {step === 2 && (

Which branch suits you?

{BRANCHES.map(br => ( ))}
)} {step === 3 && (

How can we reach you?

update('name', e.target.value)} placeholder="Your name" />
update('phone', e.target.value)} placeholder="+971 ..." />
update('email', e.target.value)} placeholder="you@example.com" />
{[['whatsapp','WhatsApp'],['call','A phone call'],['email','Email']].map(([v,l]) => ( ))}
We collect contact details and treatment interest only. No medical history is stored through this form.
)} {step === 4 && (

Thank you, {data.name.split(' ')[0] || 'we have it'}.

A team member from {BRANCHES.find(b => b.id === data.branch).name} will reach out via {data.contactMode === 'whatsapp' ? 'WhatsApp' : data.contactMode === 'call' ? 'phone' : 'email'} within one business day to suggest consultation times.

Continue on WhatsApp
)}
); } function BackBtn({ onClick }) { return ; } // ============ ABOUT / FOUNDER ============ function AboutBlock() { return (
Consultation in progress
— About the group

A surgeon's clinic, expanded with wellness in mind.

Aesthetics International was founded in Dubai in 2011 by Dr Jaffer Khan — a consultant plastic surgeon practising in the region since 1998. The Nova Clinic opened around 2017 as the group's expansion brand: aesthetic medicine, surgery, and an increasingly serious wellness and longevity offer, run out of three locations.

2011
Aesthetics International founded
~2017
The Nova Clinic opens
The full story
); } // ============ FOOTER ============ function Footer() { return ( ); } function FCol({ title, children }) { return (
{title}
{children}
); } function FLink({ children, href = '#' }) { return e.currentTarget.style.color = 'var(--brass)'} onMouseLeave={e => e.currentTarget.style.color = ''}>{children}; } window.NovaSections3 = { BeforeAfterBlock, LocationsBlock, BookingBlock, AboutBlock, Footer };