/* Fluffy Friends — Contact page */ const { Button, Input, Select } = window.FluffyFriendsDesignSystem_a09c32; function ContactPage({ onBook }) { useReveal(); const [name, setName] = React.useState(''); const [pet, setPet] = React.useState('Dog'); const [msg, setMsg] = React.useState(''); const [sent, setSent] = React.useState(false); const sendWhatsApp = (e) => { e.preventDefault(); const text = `Hi Fluffy Friends! 🐾\nMy name is ${name || '(your name)'}.\nPet: ${pet}.\n${msg || 'I\'d love to book a groom — could you help?'}`; openWhatsApp(text); setSent(true); }; const cards = [ { ic: 'phone', cls: '', sub: 'Call us', val: FLF.phoneDisplay, href: `tel:${FLF.tel}` }, { ic: 'wa', cls: 'wa', sub: 'WhatsApp', val: 'Message us instantly', href: waLink() }, { ic: 'mail', cls: '', sub: 'Email', val: FLF.email, href: `mailto:${FLF.email}` }, { ic: 'instagram', cls: '', sub: 'Instagram', val: `@${FLF.ig}`, href: FLF.igUrl }, ]; const hours = [['Monday – Tuesday', '9:00 – 19:00'], ['Wednesday – Saturday', '9:00 – 21:00'], ['Sunday', 'Closed']]; const areas = ['Jumeirah', 'Dubai Marina', 'Downtown', 'Arabian Ranches', 'Palm Jumeirah', 'JVC', 'Business Bay', 'Mirdif', 'Al Barsha', 'Springs & Meadows', '+ all of Dubai']; return (
Say hello

Let’s get in touch

Booking, a quick question, or just want grooming advice? We’re always happy to help — WhatsApp is the fastest way to reach us.

{/* Left: details */}

Opening hours

{hours.map(([d, t]) => (
{d}{t}
))}
{/* Right: form */}
{!sent ? (

Send us a message

Fill this in and we’ll open WhatsApp with your details ready to send — or call us anytime.

setName(e.target.value)} required />