A fully-equipped pink salon on wheels, bringing calm, personalised grooming to pets all over Dubai — dogs, cats, bunnies and birds, every one treated like family.
★★★★★4.9 · loved by 2,000+ Dubai pet parents
At your doorWe come to you
);
}
/* ——— Trust bar ——— */
function TrustBar() {
const items = [
['heart-handshake', 'Treated like family', 'Calm, one-to-one care'],
['truck', 'Fully-equipped van', 'A real salon on wheels'],
['sparkles', 'Personalised grooming', 'Curated to every coat'],
['shield-check', 'Safe & gentle', 'Trained, caring groomers'],
];
return (
{items.map(([ic, t, s]) => (
{t}{s}
))}
);
}
/* ——— How it works ——— */
function HowItWorks() {
const steps = [
['calendar-heart', 'Book in seconds', 'Tell us your pet, pick a service and a time that suits you — on WhatsApp or right here.'],
['truck', 'We come to you', 'Our pink salon-van pulls up to your door, fully equipped, spotless and ready to pamper.'],
['sparkles', 'Fresh & fluffy', 'A calm, one-to-one groom — your pet comes home clean, happy and looking gorgeous.'],
];
return (
Easy as can be
How it works
From booking to blow-dry, we keep it simple, calm and completely stress-free.
{steps.map(([ic, h, p], i) => (
{i + 1}
{h}
{p}
))}
);
}
/* ——— Services (with animated before → after media) ——— */
const SERVICES = [
{ title: 'Dog grooming', pet: 'dog', badge: 'Most loved', badgeTone: 'pink', description: 'Bath, blow-dry, breed-specific haircut, nails & ears — for every size.', price: '200', priceNote: 'from AED', image: 'svc-dog.png' },
{ title: 'Cat grooming', pet: 'cat', badgeTone: 'soft', badge: 'Cats', description: 'A gentle de-shed, nail trim and calm, quiet wash — kittens to adults.', price: '180', priceNote: 'from AED', image: 'svc-cat.png' },
{ title: 'Bird care', pet: 'bird', badgeTone: 'ink', badge: 'Birds', description: 'A gentle feather refresh for small and large birds, handled with care.', price: '120', priceNote: 'from AED', image: 'svc-bird.png' },
{ title: 'Rabbit care', pet: 'rabbit', badgeTone: 'outline', badge: 'Small pets', description: 'A safe, water-free brush-out and spot-clean — kind to delicate bunnies.', price: '150', priceNote: 'from AED', image: 'svc-rabbit.png' },
];
function SvcCard({ s, onBook }) {
return (
{s.badge && {s.badge}}
{s.title}
{s.description}
{s.priceNote}{s.price}
);
}
function Services({ onBook }) {
return (
Tailored to every coat
Personalised care for every friend
Never a one-size-fits-all wash. Every treatment is curated to your pet’s breed, coat type and personality.
{SERVICES.map((s, i) => (
))}
);
}
/* ——— Why choose us ——— */
function WhyUs() {
const items = [
['home', 'Stress-free, at home', 'No carriers, no car rides, no waiting rooms — your pet stays calm in familiar surroundings.'],
['user-check', 'One-to-one attention', 'Just your pet and their groomer. No cages, no rushing, no other animals around.'],
['droplets', 'Premium, gentle products', 'Salon-grade, pet-safe shampoos — with anti-allergy and medical options on request.'],
['clock', 'On your schedule', 'We come when it suits you, right to your villa or building, anywhere in Dubai.'],
];
return (
)}
);
}
/* ——— Reviews (real Google reviews — each tied to a groomer) ——— */
/* TODO: drop in the verbatim text from your Google reviews — the placeholder
copy below keeps the layout complete until then. */
function GoogleG({ size = 18 }) {
return (
);
}
function Reviews() {
const data = [
{ q: 'Phillip was so calm and gentle with our nervous rescue — she usually hates being handled but stayed completely relaxed the whole groom. The van came right to our door and was spotless. We won\u2019t groom any other way now.', who: 'Aisha R.', groomer: 'Groomed by Phillip', img: 'groom-poodle.jpg', link: 'https://maps.app.goo.gl/zZRe56dCa66TbRoA7' },
{ q: 'Noel groomed our bunny so carefully and you can tell he genuinely loves animals. Ten years of experience really shows — patient, kind and reassuring from start to finish. Highly recommend for anyone with a delicate little one.', who: 'Daniel K.', groomer: 'Groomed by Noel', img: 'bunny-fluffy.jpg', link: 'https://maps.app.goo.gl/Qogxy6oHDqx7pxVv6' },
{ q: 'Mark is incredibly detail-focused — our poodle has never looked better. He arrived right on time, the van was immaculate and the whole visit was smooth and stress-free. Friendly, professional and worth every dirham.', who: 'Fatima S.', groomer: 'Groomed by Mark', img: 'groom-aussie.jpg', link: 'https://maps.app.goo.gl/2ApStntWamwRJKM19' },
];
return (