import React from "react"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { Badge } from "../components/ui/badge"; import { Card, CardContent } from "../components/ui/card"; import { MapPin, Phone, Mail, Clock, Navigation2, Globe, Users, ArrowRight } from "lucide-react"; import { useNavigate } from "react-router-dom"; export const OfficeLocations = () => { const offices = [ { id: 1, name: "WDI Headquarters - Mumbai, India", type: "Headquarters", address: { street: "123 Innovation Drive, Bandra Kurla Complex", city: "Mumbai", state: "Maharashtra", zip: "400051", country: "India" }, contact: { phone: "+91 22 4567 8900", email: "mumbai@wdi.com", generalEmail: "india@wdi.com" }, workingHours: "Mon-Fri: 9:00 AM - 6:00 PM IST", description: "Our Mumbai headquarters serves as the primary hub for operations across India and Southeast Asia. This state-of-the-art facility houses our main development teams, executive leadership, and client services.", employees: "150+", established: "2018", image: "https://images.unsplash.com/photo-1577495508048-b635879837f1?auto=format&fit=crop&w=800&q=80", mapEmbed: "https://maps.google.com/maps?q=mumbai+bandra+kurla+complex&output=embed", features: [ "24/7 Development Center", "Client Meeting Rooms", "Innovation Lab", "Executive Offices" ] }, { id: 2, name: "WDI Americas - New York, USA", type: "Regional Office", address: { street: "456 Broadway, Suite 2000", city: "New York", state: "NY", zip: "10013", country: "United States" }, contact: { phone: "+1 (555) 123-4567", email: "newyork@wdi.com", generalEmail: "americas@wdi.com" }, workingHours: "Mon-Fri: 9:00 AM - 6:00 PM EST", description: "Our New York office serves as the strategic hub for North and South American markets, focusing on client relationships, business development, and project management.", employees: "45+", established: "2020", image: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=800&q=80", mapEmbed: "https://maps.google.com/maps?q=new+york+broadway&output=embed", features: [ "Client Services Center", "Business Development Hub", "Conference Facilities", "Co-working Spaces" ] }, { id: 3, name: "WDI Europe - London, UK", type: "Regional Office", address: { street: "789 Canary Wharf, Level 15", city: "London", state: "England", zip: "E14 5AB", country: "United Kingdom" }, contact: { phone: "+44 20 7946 0958", email: "london@wdi.com", generalEmail: "europe@wdi.com" }, workingHours: "Mon-Fri: 9:00 AM - 5:30 PM GMT", description: "Our London office coordinates operations across Europe, Middle East, and Africa (EMEA), providing localized support and ensuring compliance with regional regulations.", employees: "35+", established: "2021", image: "https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=800&q=80", mapEmbed: "https://maps.google.com/maps?q=london+canary+wharf&output=embed", features: [ "EMEA Operations Center", "Compliance Office", "Client Success Team", "Partnership Hub" ] }, { id: 4, name: "WDI Development Center - Bangalore, India", type: "Development Center", address: { street: "321 Electronic City Phase 2", city: "Bangalore", state: "Karnataka", zip: "560100", country: "India" }, contact: { phone: "+91 80 4567 8900", email: "bangalore@wdi.com", generalEmail: "development@wdi.com" }, workingHours: "Mon-Fri: 9:30 AM - 6:30 PM IST", description: "Our Bangalore development center focuses on cutting-edge software development, AI/ML research, and technical innovation. This facility serves as our primary R&D hub.", employees: "200+", established: "2019", image: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=800&q=80", mapEmbed: "https://maps.google.com/maps?q=bangalore+electronic+city&output=embed", features: [ "AI/ML Research Lab", "24/7 Development Teams", "Testing & QA Center", "Technical Training Facility" ] }, { id: 5, name: "WDI Asia Pacific - Singapore", type: "Regional Office", address: { street: "159 Marina Bay Financial Centre", city: "Singapore", state: "Central Region", zip: "018963", country: "Singapore" }, contact: { phone: "+65 6789 0123", email: "singapore@wdi.com", generalEmail: "apac@wdi.com" }, workingHours: "Mon-Fri: 9:00 AM - 6:00 PM SGT", description: "Our Singapore office manages operations across the Asia-Pacific region, serving as a gateway for businesses expanding into Asian markets.", employees: "25+", established: "2022", image: "https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=800&q=80", mapEmbed: "https://maps.google.com/maps?q=singapore+marina+bay&output=embed", features: [ "APAC Business Hub", "Regional Sales Office", "Client Meeting Center", "Market Research Unit" ] } ]; const globalStats = [ { number: "5", label: "Global Offices" }, { number: "450+", label: "Team Members" }, { number: "25+", label: "Countries Served" }, { number: "24/7", label: "Development Support" } ]; const getOfficeTypeColor = (type: string) => { switch (type) { case "Headquarters": return "bg-[#E5195E] text-white"; case "Regional Office": return "bg-blue-500/20 text-blue-400"; case "Development Center": return "bg-green-500/20 text-green-400"; default: return "bg-gray-500/20 text-gray-400"; } }; const navigate = useNavigate(); return (
WDI operates globally with strategic office locations and development centers designed to serve our clients efficiently and provide a dynamic work environment for our teams. Find the nearest WDI office below.
Strategically located offices ensure we're always close to our clients and can provide local support with global expertise.
{office.description}
Address
{office.address.street}
{office.address.city}, {office.address.state} {office.address.zip}
{office.address.country}
Phone
{office.contact.phone}
{office.contact.email}
Working Hours
{office.workingHours}
Team Size
{office.employees} employees
Established
{office.established}
Key Features
For general inquiries, please use our main contact form or reach out to our global team.
ideas@wdipl.com
+1 (555) 123-4567
Schedule a meeting at any of our offices or connect with us virtually to discuss your project needs.