import React from "react"; import { Phone, Mail } from "lucide-react"; import { motion } from "framer-motion"; import { number } from "yup"; const offices = [ { region: "India", 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", number: "+91 7700900039", email: "ideas@wdipl.com", }, { region: "USA", address: `215 Jefferson Street, Fort Collins,\nCO 80524, USA`, image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/maptwo.webp", number: "+1 970 292 6650", email: "ideas@wdipl.com", }, { region: "UK", address: `2, Frederick Street, Kings Cross, London, WC1X 0ND, England, UK. CRN-14194669, UK`, image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapthree.webp", number: "+44 7464741335", email: "ideas@wdipl.com", }, // { // region: "Middle East", // address: `Perth, WA 6000`, // image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/mapfour.webp", // number: "+44 7464741335", // email: "ideas@wdipl.com", // }, ]; 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 */}
{office.number}
{office.email}
))}
); }