import React from "react"; import { Phone, Mail } from "lucide-react"; import { motion } from "framer-motion"; const offices = [ { region: "Asia Pacific", address: `614, 6th Floor, Palms Spring center,\nLink Road, Malad (West), Mumbai - 400064, India`, image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapone.webp", }, { region: "America", address: `215 Jefferson Street, Fort Collins,\nCO 80524, USA`, image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/maptwo.webp", }, { region: "Europe", address: `2, Frederick Street, Kings Cross,\nLondon, WC1X 0ND, England, UK.\nCRN-14194669, UK`, image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapthree.webp", }, { region: "Middle East", address: `Perth, WA 6000`, image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapfour.webp", }, ]; export default function GlobalOffices() { return (
{/* Section Heading */} We serve customers globally {/* Office Cards */}
{offices.map((office, index) => ( {/* Background Image with Scale on Hover */}
{/* Foreground Content */}
{/* Top Content */}

{office.region}

{office.address}

{/* Bottom Contact Info */}
(+91) 7700900039
ideas@wdipl.com
))}
); }