hiring pages added and contact no. updated at gloabal offices
This commit is contained in:
@@ -1,33 +1,42 @@
|
||||
import React from "react";
|
||||
import { Phone, Mail } from "lucide-react";
|
||||
import { motion } from "framer-motion";
|
||||
import { number } from "yup";
|
||||
|
||||
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",
|
||||
number: "+91 7700900039",
|
||||
email: "ideas@wdipl.com",
|
||||
},
|
||||
{
|
||||
region: "America",
|
||||
address: `215 Jefferson Street, Fort Collins,\nCO 80524, USA`,
|
||||
image: "https://wordpress.betadelivery.com/headerr/assets/images/new-img/maptwo.webp",
|
||||
number: "+44 7464741335",
|
||||
email: "ideas@wdipl.com",
|
||||
},
|
||||
{
|
||||
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",
|
||||
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 className="bg-wdi-grey text-white py-16 lg:px-8 container mx-auto">
|
||||
<section className="bg-wdi-grey text-white py-20 lg:px-8 container mx-auto">
|
||||
{/* Section Heading */}
|
||||
<motion.h2
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
@@ -73,11 +82,11 @@ export default function GlobalOffices() {
|
||||
<div className="mt-4 space-y-2 text-sm">
|
||||
<div className="flex items-center gap-2">
|
||||
<Phone size={16} />
|
||||
<span>(+91) 7700900039</span>
|
||||
<span>{office.number}</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<Mail size={16} />
|
||||
<span>ideas@wdipl.com</span>
|
||||
<span>{office.email}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user