// Home page const { useState: useStateHome, useEffect: useEffectHome } = React; function HomePage({ setRoute, accent }) { const data = window.BOV_DATA; const c = data.clinic; const featured = ["diagnostics-imaging","emergency-critical-care","surgery","dermatology","vaccinations","dentistry","internal-medicine","physiotherapy"]; const featSvcs = featured.map(s => data.services.find(x => x.slug === s)); const teamTeaser = ["magdalena-lisinska","dieter-malleczek","nour-abou-fakher","mariana-barreto"] .map(s => data.vets.find(v => v.slug === s)); return (
{/* HERO */}
Open today · 24/7 emergency care

Trusted veterinary care in Dubai since 2008.

A small-animal hospital with an in-house MRI suite, an international specialist team of {data.vets.length}, and an emergency line that doesn't sleep. We care more — and we mean it.

Emergency · 050 557 8834
{data.trust.map((t, i) => ( {t} {i < data.trust.length - 1 && ·} ))}
A vet examining a cat with a stethoscope
The in-house MRI imaging suite at Blue Oasis Vet
In-house
MRI · X-ray · Ultrasound · Lab
16+
years of practice
established 2008
{/* MARQUEE / pet types ribbon */}
We care for Dogs· Cats· Rabbits· Avian· Exotics Online booking via Floof
{/* DIAGNOSTICS — differentiator band */}
The differentiator

A diagnostic suite under one roof.

MRI, digital X-ray, ultrasound and an in-house laboratory — so we can move from suspicion to diagnosis in a single visit, without sending you across town. We also accept MRI, cytology and oncology referrals from other clinics.

{[ { i: "scan", t: "MRI", s: "Soft-tissue, neuro, orthopaedic" }, { i: "spark", t: "Digital X-ray", s: "Skeletal, thoracic, abdominal" }, { i: "drop", t: "Ultrasound", s: "Abdominal & cardiac" }, { i: "tag", t: "Laboratory", s: "Bloods, biochem, cytology" }, ].map(it => (
{it.t}
{it.s}
))}
Imaging equipment station with monitors and anaesthesia
Referrals welcome

Other clinics: refer MRI, cytology and oncology cases to our imaging team and you'll receive a written report within working hours.

{/* SERVICES GRID */}
What we do

Care across every stage of life.

From puppy boosters to complex surgery and end-of-life comfort — built around your pet's life, not a checklist.

{featSvcs.map((s, i) => ( ))}
{/* MEET THE TEAM TEASER */}
The people

An international team you'll actually meet.

{data.vets.length} vets across surgery, dermatology, imaging, oncology, internal medicine and emergency. Trained in Vienna, Wroclaw, Cairo, Brno, Beirut, Manila and Kyiv — practising in Dubai.

{teamTeaser.map(v => ( ))}
{/* CONVENIENCE LAYER */}
Convenience layer

When you (or your pet) can't come in.

Online booking

Pick a slot through our Floof booking page — no phone tag, no waiting room queue.

Open Floof
{/* TESTIMONIAL — careful: no fabricated rating */}
In our owners' words

"They diagnosed in one visit what two other clinics had missed. The MRI, the team, the way they speak to you — it's the standard you wish every clinic met."

An owner of a 9-year-old Labrador Verbatim quotations to be reviewed and approved with the clinic before publishing alongside Google rating.
{data.stats.map(s => (
{s.v}
{s.l}
))}
All figures reported by the clinic.
{/* EMERGENCY BAND */}
If it can't wait

Emergency care, 24 hours a day.

Call ahead so the team is ready when you arrive. Trauma, poisoning, breathing distress, blockages and post-surgery monitoring — every hour, every day.

050 557 8834 Main line · 04 884 8580
); } window.HomePage = HomePage;