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 { useNavigate } from "react-router-dom"; import riteshImage from "../src/images/ritesh-pandey.png"; import manavImage from "../src/images/manav-sain.png"; import sudhirImage from "../src/images/sudhir-malya.jpg"; import kartikeyImage from "../src/images/kartikeya-gautam.png"; import poojaImage from "../src/images/pooja-patade.jpg"; import tanveerImage from "../src/images/tanveer.jpg"; import { Helmet } from "react-helmet-async"; export const LeadershipTeam = () => { const navigate = useNavigate(); const leaders = [ { name: "Ritesh Pandey", position: "Founder & CEO", image: riteshImage, accent: "pink", // default bio: "Founder & CEO leading innovation and AI-driven growth across industries.", social: { linkedin: "https://linkedin.com/in/riteshwdipl", email: "#", twitter: "#", }, }, { name: "Manav Sain", position: "VP- Business Solutions", image: manavImage, accent: "green", bio: "VP crafting business solutions and scaling digital strategy for enterprise clients.", social: { linkedin: "https://linkedin.com/in/manavsain", email: "#", twitter: "#", }, }, { name: "Sudhir Mallya", position: "CTO", image: sudhirImage, accent: "blue", bio: "CTO leading technology innovation and scalable digital architecture.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "#", email: "#", twitter: "#", }, }, { name: "Kartikey Gautam", position: "Product Manager", image: kartikeyImage, accent: "green", bio: "Product Manager building scalable AI products with a user-centric approach.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "https://linkedin.com/in/kartikey-gautam-product-manager", email: "#", twitter: "#", }, }, { name: "Pooja Patade", position: "Head - Accounts & HR", image: poojaImage, accent: "blue", bio: "Head of HR & Accounts ensuring smooth operations and organizational alignment.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "https://linkedin.com/in/pooja-patade-85453a13b", email: "#", twitter: "#", }, }, { name: "Tanveer Ajani", position: "Compliance Head", image: tanveerImage, accent: "pink", bio: "Ensures regulatory excellence and drives compliance across operations.", experience: "Former VP at Microsoft, Stanford MBA", social: { linkedin: "#", email: "#", twitter: "#", }, }, ]; // Helper function to get accent colors const getAccentColors = (accent: string) => { switch (accent) { case 'green': return { primary: '#10B981', bg: 'from-green-600/20 to-emerald-500/20', border: 'border-green-500/30', hover: 'hover:bg-green-500/20', shadow: 'hover:shadow-green-500/25', text: 'text-green-400' }; case 'blue': return { primary: '#3B82F6', bg: 'from-blue-600/20 to-blue-500/20', border: 'border-blue-500/30', hover: 'hover:bg-blue-500/20', shadow: 'hover:shadow-blue-500/25', text: 'text-blue-400' }; default: // pink return { primary: '#E5195E', bg: 'from-[#E5195E]/20 to-[#FF6B9D]/20', border: 'border-[#E5195E]/30', hover: 'hover:bg-[#E5195E]/20', shadow: 'hover:shadow-[#E5195E]/25', text: 'text-[#E5195E]' }; } }; 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) => { const colors = getAccentColors(leader.accent); return (
{/* Profile Image - Reduced Size */}
{leader.name} {/* Colored Glow Effect on Hover */}
{/* Colored Status Ring */}
{/* Content */}

{leader.name}

{leader.position}

{leader.bio}

{/* 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

{/*
); };