/* Fluffy Friends — Meet the groomers (with embedded Instagram reels) */ const { Button, Badge } = window.FluffyFriendsDesignSystem_a09c32; /* The team — bios distilled from the brand's own words, kept warm & emoji-free. Each groomer has a real Instagram handle + a featured reel permalink. */ const GROOMERS = [ { id: 'phillip', name: 'Phillip Moralez', role: 'Gentle-touch groomer', handle: 'phillipfluffyfriends.ae', photo: 'assets/imagery/groomer-phillip.jpg', pos: '34% 52%', tags: ['Calm energy', 'Nervous pets', 'Dogs & cats'], bio: 'Phillip leads with calm energy and a gentle approach — the kind of quiet presence that settles even the most nervous pet. From his favourite friends to groom to the little moments that make it all worth it, he brings patience and real care to every single visit.', reel: 'https://www.instagram.com/reel/DXg7_3mDfqU/', }, { id: 'noel', name: 'Noel Bautista', role: 'Master groomer · 10+ years', handle: 'noelfluffyfriends.ae', photo: 'assets/imagery/groomer-noel.jpg', pos: '40% 40%', tags: ['10+ years', 'Loves bunnies', 'Endlessly patient'], bio: 'With over ten years in the grooming field, Noel is patient, gentle and genuinely passionate about pets — with a special soft spot for bunnies. He has a knack for making every friend feel relaxed, cared for and completely at home throughout their groom.', reel: 'https://www.instagram.com/reel/DYUS1yyKe2v/', }, { id: 'mark', name: 'Mark Lopez', role: 'Senior groomer · 9 years', handle: 'markfluffyfriends.ae', photo: 'assets/imagery/groomer-mark.jpg', pos: '28% 40%', tags: ['9 years', 'Detail-focused', 'Calm & attentive'], bio: 'Nine years in, Mark is all about the details — calm, attentive and precise. He keeps every visit smooth, safe and stress-free, with a finish that is as gentle as it is gorgeous. Ask him which pets he loves grooming most.', reel: 'https://www.instagram.com/reel/DXy-69Esy3b/', }, ]; /* Embedded Instagram reel — uses Instagram's official embed.js. Falls back to a tappable card if the embed can't load (offline / blocked). */ function InstagramReel({ url, name }) { const ref = React.useRef(null); React.useEffect(() => { let done = false; const process = () => { if (window.instgrm && window.instgrm.Embeds) { window.instgrm.Embeds.process(); return true; } return false; }; if (process()) return; const t = setInterval(() => { if (process()) { done = true; clearInterval(t); } }, 350); const stop = setTimeout(() => clearInterval(t), 8000); return () => { clearInterval(t); clearTimeout(stop); }; }, [url]); const permalink = url + (url.includes('?') ? '' : '?utm_source=ig_embed'); return (
Watch {name.split(' ')[0]}’s reel on Instagram
); } function GroomerRow({ g, i }) { const reversed = i % 2 === 1; return (
{g.name}

{g.name}

{g.role}
{g.tags.map(t => {t})}

{g.bio}

@{g.handle}
); } function MeetGroomers() { return (
The faces behind the care

Meet the groomers

The gentle hands inside the pink van. Get to know the people who treat your pet like family — and watch them at work on Instagram.

{GROOMERS.map((g, i) => )}
); } Object.assign(window, { MeetGroomers, InstagramReel });