/* global React, window */ // Shampooch — Home page. const { useState: useStateHome, useEffect: useEffectHome } = React; const Dh = window.SHAMPOOCH_DATA; function HomeHero() { return (
Premium dog care · Dubai · Since 20+ years

The place where good dogs go to get pampered.

Mobile grooming in our signature pink & yellow vans, a custom-built salon, supervised daycare, a boutique hotel for staycations, and our own all-natural retail line. One family, six services, dogs only.

Book on WhatsApp Call {Dh.contact.landlineDisplay}
Family-run Vaccination-safe Fluff-dried · no box dryers 24/7 supervised boarding
Hi, I’m Bowie ✌︎
A freshly-fluff-dried poodle on the grooming table
A happy pug pack on a yellow bench in the salon
{/* decorative ribbon */}
); } function HomeServices() { return (
What we do

Six ways we take care of your dog.

Pricing isn’t one-size-fits-all — coat, breed and time taken all matter. Tap any service for what’s included, then ask us for a free quote.
{Dh.services.map((s, i) => )}
); } function HomeVanBand() { return (
Signature service

The spa comes to you — in a very pink van.

Fully-equipped mobile grooming in our pink & yellow vans. Same groomers, same all-natural shampoos, same fluff-dry — just parked at your door. Pre-book early; demand is high.

Shampooch pink and yellow mobile grooming van
); } function HomeSafety() { return (
Our safety & hygiene standards

Trust is a checklist, not a vibe.

Premium care isn’t a promise — it’s a set of policies. Here’s exactly what we require of every dog (and ourselves) before they walk in the door.

See all safety credentials
{Dh.safety.map(s => (

{s.title}

{s.body}

))}
); } function HomeGallery() { return (
Our home — the pack at play

A look around the salon.

Real photos of our facility, our team, and the dogs who treat reception like their own living room.

More about us
{Dh.galleryPhotos.slice(0, 8).map((g, i) => (
{`Shampooch
))}
); } function HomeReview() { return (
Our reviews

What happy pooches & their hoomans say.

Live Google reviews coming soon — we’re wiring this up properly, not faking a star count.

); } function HomeCTA() { return (

Ready to book? It’s a quick chat away.

Tell us your dog’s name, breed, and what you need. We’ll come back with a free quote and an open slot.

Book on WhatsApp Send a booking enquiry
{/* Floating bones / dots */}
); } function HomeInsta() { return (
Follow the pack

@shampoochuae

Follow on Instagram
{Dh.galleryPhotos.slice(4, 12).map((g) => ( Instagram preview ))}
); } function HomePage() { return ( ); } window.HomePage = HomePage;