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 { ArrowRight, Linkedin, Twitter, Mail } from "lucide-react"; import { navigateTo } from "@/App"; import riteshImage from "../src/images/ritesh-pandey.png"; import manavImage from "../src/images/manav-sain.png"; import sudhirImage from "../src/images/sudhir-malya.png"; import kartikeyImage from "../src/images/kartikeya-gautam.png"; import poojaImage from "../src/images/pooja-patade.png"; import tanveerImage from "../src/images/tanveer-ajani.png"; import { Helmet } from "react-helmet-async"; export const LeadershipTeam = () => { const leaders = [ { name: "Ritesh Pandey", position: "Founder & CEO", image: riteshImage, bio: "Founder & CEO leading innovation and AI-driven growth across industries.", social: { linkedin: "linkedin.com/in/riteshwdipl", twitter: "#", email: "ideas@wdipl.com" } }, { name: "Manav Sain", position: "VP- Business Solutions", image: manavImage, bio: "VP crafting business solutions and scaling digital strategy for enterprise clients.", social: { linkedin: "linkedin.com/in/manavsain", twitter: "#", email: "ideas@wdipl.com" } }, { name: "Sudhir Mallya", position: "CTO", image: sudhirImage, bio: "CTO leading technology innovation and scalable digital architecture.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "#", twitter: "#", email: "ideas@wdipl.com" } }, { name: "Kartikey Gautam", position: "Product Manager", image: kartikeyImage, bio: "Product Manager building scalable AI products with a user-centric approach.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "linkedin.com/in/kartikey-gautam-product-manager", twitter: "#", email: "ideas@wdipl.com" } }, { name: "Pooja Patade", position: "Head - Accounts & HR", image: poojaImage, bio: "Head of HR & Accounts ensuring smooth operations and organizational alignment.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "linkedin.com/in/pooja-patade-85453a13b", twitter: "#", email: "ideas@wdipl.com" } }, { name: "Tanveer Ajani", position: "Compliance Head", image: tanveerImage, bio: "Ensures regulatory excellence and drives compliance across operations.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "#", twitter: "#", email: "ideas@wdipl.com" } }, ]; return (
{/* Page Title and Meta Description */} Leadership Team | Experts in Tech Leadership & Innovation {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */} {/* Hero Section */}
Leadership Team

Meet the Visionaries Behind {" "} WDI

Our leadership team combines decades of experience from top tech companies with a shared passion for digital innovation and client success.

{/* Leadership Grid */}
{leaders.map((leader, index) => (
{/* Profile Image */}
{leader.name}
{/* Content */}

{leader.name}

{leader.position}

{leader.bio}

{/*

{leader.experience}

*/} {/* Social Links */}
))}
{/* Advisory Board */} {/*

Advisory Board

Industry experts who guide our strategic direction and innovation initiatives

{[ { name: "Dr. Alan Foster", title: "Former CTO, Meta", expertise: "AI & Emerging Technologies", }, { name: "Maria Santos", title: "Former VP, Netflix", expertise: "Product Strategy & Growth", }, { name: "Robert Kim", title: "Former Director, Amazon", expertise: "Cloud Infrastructure & Scalability", }, ].map((advisor, index) => (
{advisor.name .split(" ") .map((n) => n[0]) .join("")}

{advisor.name}

{advisor.title}

{advisor.expertise}

))}
*/} {/* CTA Section */}

Want to Work with Our Team?

Join our growing team of innovators or partner with us to transform your business

); };