/* global React */ // ============================================================ // ABOUT / TEAM // ============================================================ const AboutPage = () => (
A small, doctor-led clinic in Business Bay.} lede="Covent Clinic is a registered specialty clinic offering doctor-led aesthetic and cosmetic-dermatology care. We're a small team — you'll meet the same clinicians each visit." />

Why we exist.

Business Bay has no shortage of beauty rooms. What it didn't have was a small, registered clinic where every injectable, every laser pass, every prescription is in the hands of an actual doctor — not a technician with a weekend certificate.

We opened Covent Clinic to do aesthetics the way the doctors among us would want it done themselves: conservative, consultation-first, and honest about what is and isn't realistic.

License
DHA · Specialty Clinic
numbers to confirm with client
Category
Cosmetic dermatology
Specialty Clinic · Dermatology
{/* Practitioners full */}
The team

Named clinicians, real ratings.

{window.PRACTITIONERS.map((p, i) => (
headshot
{p.name}
{p.role}
{p.rating}

{p.bio}

{p.specialties.map((s, k) => ( {s} ))}
))}
A note on credentials. Full DHA license numbers and individual specialties are being verified for publication. Patients can ask to see credentials at any consultation.
{/* CTA strip */}

Ready to meet the team?

A consultation is the start of every treatment plan, and it's always free.

Book your consultation
); // ============================================================ // REVIEWS // ============================================================ const ReviewsPage = () => { const moreQuotes = [ { quote: "She listened first, suggested less, and the result is exactly what I hoped for.", author: "Anonymous", date: "Apr 2026", source: "Fresha", treatment: "Lip filler" }, { quote: "The clinic itself is calm and clean — feels more like a doctor's office than a salon, which is what I wanted.", author: "Anonymous", date: "Apr 2026", source: "Fresha", treatment: "Profhilo" }, { quote: "Walked in nervous, walked out wishing I'd come sooner.", author: "Anonymous", date: "Mar 2026", source: "BookBeauty", treatment: "Botox" }, ]; const all = [...window.REVIEWS, ...moreQuotes]; return (
What our patients say.} lede="Verified reviews on Fresha and BookBeauty. We publish what's said about us — verbatim, with the patient's first name and the source platform." />
4.5
129 reviews · Fresha
View on Fresha
4.5
619 reviews · BookBeauty
View on BookBeauty
{all.map((r, i) => (

“{r.quote}”

{r.author}
{r.date} · {r.treatment}
{r.source}
))}
); }; // ============================================================ // PRICING // ============================================================ const PricingPage = () => { return (
Transparent, “from” pricing.} lede="Every treatment we publish a price for is the “from” price — the minimum starting point. Final cost is confirmed at your free consultation." />
TreatmentFromNotes
{window.PRICE_TABLE.map((row, i) => (
0 ? "1px solid var(--line)" : "none", alignItems: "center", }}>
{row.name}
{row.price}
{row.notes || "—"}
))}
How pricing works. Prices are denominated in AED and include VAT. Where multiple sessions are recommended (e.g. fat dissolving, laser hair removal), package pricing is offered after your consultation. Membership and special offers are surfaced live on our Fresha page.
); }; // ============================================================ // CONTACT // ============================================================ const ContactPage = () => { return (
Westbury Tower 1, Business Bay.} lede="A short drive from Downtown and DIFC. Discreet entrance, tower parking, 3rd-floor clinic." />
Address

Westbury Tower 1, Office 307
3rd floor · Business Bay
Dubai, UAE

Open in Maps
Hours
{[ ["Monday", "10:00 – 22:00"], ["Tuesday", "10:00 – 22:00"], ["Wednesday", "10:00 – 22:00"], ["Thursday", "10:00 – 22:00"], ["Friday", "10:00 – 22:00"], ["Saturday", "10:00 – 22:00"], ["Sunday", "Closed"], ].map(([d, h], i) => ( {d} {h} ))}
Sunday hours: confirm before visiting.
); }; Object.assign(window, { AboutPage, ReviewsPage, PricingPage, ContactPage });