/* Fluffy Friends — About page */ const { Button } = window.FluffyFriendsDesignSystem_a09c32; function AboutPage({ onBook, onNav }) { useReveal(); const values = [ ['heart', 'Love first', 'Every pet is treated like family. Calm hands, soft voices and all the patience in the world — never rushed.'], ['scissors', 'Skilled & gentle', 'Trained groomers who tailor each treatment to your pet’s breed, coat and temperament.'], ['sparkles', 'Spotlessly clean', 'A hygienic, sanitised van for every single visit — premium, pet-safe products throughout.'], ]; const team = [ { img: 'groomer-phillip.jpg', pos: '34% 52%', name: 'Phillip Moralez', role: 'Gentle-touch groomer', handle: 'phillipfluffyfriends.ae' }, { img: 'groomer-noel.jpg', pos: '40% 40%', name: 'Noel Bautista', role: 'Master groomer · 10+ years', handle: 'noelfluffyfriends.ae' }, { img: 'groomer-mark.jpg', pos: '28% 40%', name: 'Mark Lopez', role: 'Senior groomer · 9 years', handle: 'markfluffyfriends.ae' }, ]; const stats = [['2,000+', 'Happy pets'], ['4.9★', 'Average rating'], ['3', 'Fully-equipped vans'], ['100%', 'At your door']]; return (
Our story

Grooming with love and care

Fluffy Friends began with a simple idea — that grooming should be calm, kind and come to you. So we built a salon on wheels and brought it to pets across Dubai.

{/* Story */}
A Fluffy Friends groomer caring for a dog inside the van
Why we started

A salon that travels to your pet

We noticed how stressful traditional grooming can be — the car ride, the carrier, the waiting room full of unfamiliar animals and noise. Pets deserve better, and so do the people who love them.

So we created a fully-equipped pink salon-van and brought it to your door. One pet at a time, in a calm and familiar setting, with a groomer who gives them their full, undivided attention.

Today we care for dogs, cats, bunnies and birds right across Dubai — every treatment personalised to the animal’s breed, coat type and personality. Never a one-size-fits-all wash.

{/* Stats */}
{stats.map(([b, s]) => (
{b}{s}
))}
{/* Values */}
What we stand for

Care in everything we do

{values.map(([ic, h, p], i) => (

{h}

))}
{/* The van */}
The mobile salon

A real salon, on wheels

Our van is a complete grooming studio — warm water, professional dryers, a calm grooming table and salon-grade products, all kept spotless and sanitised between every pet.

    {[ 'Climate-controlled, calm and quiet inside', 'Sanitised after every single groom', 'Premium pet-safe shampoos & conditioners', 'Anti-allergy and medical shampoo on request', 'Tick & fleas protection treatments available', ].map(t => (
  • {t}
  • ))}
The Fluffy Friends pink mobile grooming van
{/* Team */}
The people behind the care

Meet our groomers

Calm, certified and genuinely pet-mad — Phillip, Noel and Mark treat every friend like their own. Follow their work on Instagram.

{team.map((m, i) => (
{m.name}

{m.name}

{m.role} @{m.handle}
))}
{/* CTA */}

Let’s pamper your pet

Join 2,000+ Dubai pet parents who groom the gentle, stress-free way.

); } Object.assign(window, { AboutPage });