const LOCATIONS = [ { name: "Downtown Branch", address: "123 Main St", phone: "(123) 456-7890", email: "downtown@petshop.com", }, { name: "North Branch", address: "456 North Ave", phone: "(987) 654-3210", email: "north@petshop.com", }, { name: "West Side Store", address: "789 West Blvd", phone: "(555) 123-4567", email: "westside@petshop.com", }, ]; const PERSONNEL = [ { name: "John Doe", role: "Store Manager" }, { name: "Sara Smith", role: "Staff" }, { name: "Michael Johnson", role: "Grooming Team" }, ]; export default function ContactPage() { return (

Contact Us

Reach the team, find a location, or connect with store personnel.

General Contact

Email: support@petshop.com

Phone: (000) 000-0000

Hours: Mon–Sat, 9:00 AM – 6:00 PM

Store Locations

{LOCATIONS.map((location) => (

{location.name}

{location.address}

{location.phone}

{location.email}

))}

Store Personnel

{PERSONNEL.map((person) => (

{person.name}

{person.role}

))}
); }