// Petzone — page components const { useState: useStateP, useEffect: useEffectP, useMemo: useMemoP } = React; // ============== HOME ============== const HomePage = ({ go, openBook, heroVariant, density }) => { const D = window.PZ_DATA; const heroImg = { care: D.heroImages.care, interior: D.heroImages.interior, safe: D.heroImages.safe, cat: D.heroImages.cat }[heroVariant] || D.heroImages.care; return (
{/* ============ HERO ============ */}
Family vet on Sheikh Zayed Road · Since 2009

Where pets come first — and so do their families.

A family-owned small-animal clinic on Sheikh Zayed Road. In-house lab, X-ray, ultrasound and pharmacy under one roof. The same caring vets you've been bringing your pets to for fifteen years.

{D.clinic.phonePrimary}
Same-day appointments often available Dogs · Cats · Birds · Small mammals
Vet care at Petzone
{/* floating tile */}
Dr Natascia is in today
Most-asked-for family vet
15+
years caring
{/* decorative paw watermark */}
{/* ============ TRUST STRIP ============ */}
{D.trust.map(t => (
{t.k}
{t.v}
))}
{/* ============ SERVICES GRID ============ */}
{D.services.map((s, i) => ( ))}
{/* ============ WHY PETZONE — split layout ============ */}
{[ { t: "One-stop diagnostics", b: "Blood, urine, X-ray and ultrasound run on-site — we rarely need to send anything out.", icon: "flask" }, { t: "Caring named vets", b: "You see the same faces year after year. Most of our families have a vet they ask for by name.", icon: "heart" }, { t: "Pharmacy on premises", b: "Most prescriptions filled before you leave. No second errand.", icon: "pill" }, { t: "Family-vet voice", b: "We sit down. We explain. We never rush you out of a consultation room.", icon: "stethoscope" }, ].map(card => (
{card.t}

{card.b}

))}
{/* ============ MEET THE VETS TEASER ============ */}
{D.vets.filter(v => !v.draft).map(v => ( ))}
{/* ============ STORY STRIP — quote + image ============ */}

"A client-centered facility that goes above and beyond to provide friendly customer service and uphold first-class veterinary standards."

— From the clinic's own description
{/* ============ GALLERY ============ */}
{D.gallery.slice(0,8).map((src, i) => (
))}
{/* ============ CONTACT / MAP ============ */}
); }; // ============== SERVICES HUB ============== const ServicesPage = ({ go, openBook }) => { const D = window.PZ_DATA; return (
Services

Everything your pet needs, in one Sheikh Zayed Road building.

Eight verified services — consultation, vaccination, surgery, dental, in-house lab, imaging, pharmacy and prescription diets. We don't publish a price list because no two pets are the same; your vet will walk you through cost before anything begins.

{D.services.map((s, i) => ( ))}
{/* Draft note */}
Coming once we confirm with the clinic
Microchipping & Dubai Municipality pet registration, pet travel & relocation paperwork, full grooming, and boarding — sector-standard services that the clinic may offer but which weren't surfaced in available sources. We won't publish them until the team confirms scope.
); }; // ============== SERVICE DETAIL ============== const ServiceDetailPage = ({ slug, go, openBook }) => { const D = window.PZ_DATA; const s = D.services.find(x => x.slug === slug); if (!s) return
Service not found.
; const related = D.services.filter(x => x.slug !== slug).slice(0, 3); return (
Service

{s.name}

{s.body}

What's included
    {s.included.map(item => (
  • {item}
  • ))}
When your pet needs it

{s.when}

We don't publish prices because no two visits are identical. After the vet has seen your pet, you'll get a clear cost breakdown before anything begins.
Ask us first
How to book
    {["Tell us what kind of pet and what's going on.","We confirm a slot by phone, usually within the hour.","Walk in to Al Thuraya Bldg, Showroom #2. Public parking outside."].map((step, i) => (
  1. {i+1} {step}
  2. ))}
{/* Related */}
{related.map(r => ( ))}
); }; // ============== VETS HUB ============== const VetsPage = ({ go, openBook }) => { const D = window.PZ_DATA; const confirmed = D.vets.filter(v => !v.draft); const pending = D.vets.filter(v => v.draft); return (
Our vets

The vets your pet remembers, the vets you ask for by name.

We publish only verified profiles. Credentials and MOCCAE / Dubai Municipality licence numbers go up as the clinic confirms them, with the staff member's consent.

{confirmed.map(v => ( ))}

These portraits were recovered from archived clinic media. They will not be published as current staff until consent and credentials are confirmed with each person.

{pending.map(v => (
{v.name}
Draft
{v.name}
{v.role}
))}
); }; // ============== VET DETAIL ============== const VetDetailPage = ({ slug, go, openBook }) => { const D = window.PZ_DATA; const v = D.vets.find(x => x.slug === slug); if (!v) return
Profile not found.
; return (
{v.name}
Veterinarian

{v.name}

{v.role}

{v.bio}

Focus areas
{v.tags.map(t => {t})}
Credentials & licence

{v.credentials}

Call to ask
); }; // ============== ABOUT ============== const AboutPage = ({ go, openBook }) => { const D = window.PZ_DATA; return (
About Petzone

Family-owned. Family-vet. Same building since 2009.

Petzone Veterinary Clinic is a client-focused, family-owned small-animal clinic on Sheikh Zayed Road. We've been here long enough to see puppies grow into seniors, and we still pick up the phone when the same families call.

{/* Story */}
The mission

"To provide the highest quality veterinary, surgical and nursing care possible to the animals entrusted to us."

— Verbatim from Petzone
{[ { t: "Where pets come first", b: "It's not a slogan — it's the order things happen in. Your pet meets the vet before we meet a clipboard. Diagnostics happen on-site, so answers arrive on the same visit. Medications dispense before you leave." }, { t: "Client-centered, by design", b: "We are, in our own words, 'a client-centered facility that goes above and beyond to provide friendly customer service and uphold first-class veterinary standards.' That means unrushed consults, written care plans, and follow-up calls when you'd expect a voicemail." }, { t: "One building, fewer trips", b: "Petzone keeps lab, X-ray, ultrasound, pharmacy, and prescription diets under one roof. For your pet, that's less stress; for you, that's fewer cars across Sheikh Zayed Road on a Tuesday morning." }, ].map(b => (
{b.t}

{b.b}

))}
Licence block

MOCCAE / Dubai Municipality clinic licence numbers will be published here once supplied by the clinic. We do not publish unverified credentials.

{/* FAQ */}
); }; // ============== CONTACT ============== const ContactPage = ({ go, openBook }) => { return (
Contact

Pick up the phone, or just walk in.

); }; // ============== shared bits ============== const ContactBlock = ({ go, openBook, compact }) => { const c = window.PZ_DATA.clinic; return (
{/* Map */}
Petzone Veterinary Clinic
{c.address.line1}
{c.address.line2}
{c.address.line3}
Map pin — pending exact coordinates from clinic.
{/* Sidebar */}
Reach us
{c.phonePrimary}
Reception · proven channel today
{c.email}
For non-urgent enquiries
Hours
Three different schedules appear across the clinic's own listings. We're confirming the single correct schedule with reception before publishing.
Not a 24/7 emergency clinic.
); }; const FakeMap = () => (
{/* stylized abstract map illustration */} {/* road grid — SZR diagonal */} {/* blocks */} {/* labels */} SHEIKH ZAYED RD {/* pin */}
); const FAQList = ({ items }) => { const [open, setOpen] = useStateP(0); return (
{items.map((it, i) => (
{open === i &&
{it.a}
}
))}
); }; const CTABand = ({ openBook }) => (
Ready when you are

Bring your pet in. We'll take it from there.

{window.PZ_DATA.clinic.phonePrimary}
); Object.assign(window, { HomePage, ServicesPage, ServiceDetailPage, VetsPage, VetDetailPage, AboutPage, ContactPage, CTABand, ContactBlock, FAQList });