import React from "react"; import { motion } from "framer-motion"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { ProcessSection } from "../components/ProcessSection"; import { AnimatedGradientText } from "../components/AnimatedGradientText"; import { Button } from "../components/ui/button"; import { ShimmerButton } from "../components/ui/shimmer-button"; import { Badge } from "../components/ui/badge"; import { Card, CardContent } from "../components/ui/card"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "../components/ui/accordion"; import { GridPattern } from "../components/GridPattern"; import { navigateTo } from "../App"; import { Users, Heart, Shield, Target, Lightbulb, Award, TrendingUp, Clock, Newspaper, ArrowRight, Building, Globe, CheckCircle, Coffee, Eye, Star, Calendar, MessageSquare, Briefcase, Rocket, ChevronRight } from "lucide-react"; // Enhanced Hero Section const HeroWithCTA = () => { return (
{/* Company Label */} About WDI {/* Main Heading - Left aligned, reduced font size */}

WDI : Innovating for a Better Digital Future

Discover our mission, values, and the people behind our commitment to excellence in technology and partnership.

{/* CTAs */} navigateTo('/company/our-history')}>
Our Story
{/* Right side with stats */}
6+
Years Experience
500+
Happy Clients
150+
Team Members
20+
Countries Served
); }; // About WDI Section - Integrated from standalone page const AboutWDISection = () => { return (
{/* Mission & Vision */}

Our Mission & Vision

Mission

To empower businesses worldwide with cutting-edge digital solutions that drive innovation, efficiency, and sustainable growth in an ever-evolving technological landscape.

Vision

To be the global leader in digital transformation, setting new standards for innovation, quality, and client success across all industries we serve.

Global Impact

Serving clients across 40+ countries with innovative digital solutions

{/* Core Values */}

Our Core Values

The principles that guide every decision we make and every solution we deliver

{[ { icon: Heart, title: "Client-Centric", description: "Your success is our success. We put our clients at the heart of everything we do." }, { icon: Lightbulb, title: "Innovation", description: "We continuously explore new technologies and methodologies to deliver cutting-edge solutions." }, { icon: Award, title: "Excellence", description: "We maintain the highest standards of quality in every project we undertake." }, { icon: Users, title: "Collaboration", description: "We believe in the power of teamwork and transparent communication." }, { icon: Target, title: "Results-Driven", description: "We focus on delivering measurable outcomes that drive real business value." }, { icon: Globe, title: "Global Perspective", description: "We bring international expertise with local market understanding." } ].map((value, index) => (

{value.title}

{value.description}

))}
{/* Stats Section */}
{[ { number: "500+", label: "Projects Delivered" }, { number: "50+", label: "Expert Developers" }, { number: "40+", label: "Countries Served" }, { number: "98%", label: "Client Satisfaction" } ].map((stat, index) => (
{stat.number}
{stat.label}
))}
); }; // Enhanced Horizontal Tag Scroller with Company Values const HorizontalTagScroller = () => { const values = [ { name: "Innovation", icon: Lightbulb, color: "text-yellow-400" }, { name: "Integrity", icon: Shield, color: "text-blue-400" }, { name: "Client Success", icon: Target, color: "text-green-400" }, { name: "Excellence", icon: CheckCircle, color: "text-purple-400" }, { name: "Collaboration", icon: Users, color: "text-orange-400" }, { name: "Growth", icon: TrendingUp, color: "text-cyan-400" } ]; return (

What Drives Us: Our Core Values

These values define our culture and guide every decision we make.

{/* First set */} {values.map((value, index) => { const IconComponent = value.icon; return (
{value.name}
); })} {/* Second and third sets for seamless loop */} {[...values, ...values].map((value, index) => { const IconComponent = value.icon; return (
{value.name}
); })}
); }; // Why Choose WDI Section const SideBySideContentWithIcons = () => { const advantages = [ { id: "experience", title: "6+ Years of Innovation", icon: Clock }, { id: "trust", title: "500+ Trusted Clients", icon: Heart }, { id: "global", title: "Global Reach", icon: Globe }, { id: "team", title: "Expert Team", icon: Users }, { id: "excellence", title: "Award-Winning Excellence", icon: Award } ]; return (

A Legacy of Innovation and Trust

Building the future through technology and partnership.

{advantages.map((advantage, index) => { const IconComponent = advantage.icon; return (

{advantage.title}

); })}
); }; // Company Sections Grid - Updated to remove About WDI card const TabbedServiceDisplay = () => { const sections = [ { title: "Our History", icon: Clock, description: "Discover our journey and key milestones.", link: "/company/our-history" }, { title: "Leadership Team", icon: Users, description: "Meet the visionaries leading our organization.", link: "/company/leadership-team" }, { title: "Awards & Certifications", icon: Award, description: "Recognition and industry certifications.", link: "/company/awards-certifications" }, { title: "Careers", icon: Briefcase, description: "Join our team and grow your career with us.", link: "/company/careers" }, { title: "Culture & Values", icon: Heart, description: "Explore our company culture and core values.", link: "/company/culture-values" }, { title: "Press & Media", icon: Newspaper, description: "Latest news, press releases, and media coverage.", link: "/company/press-media" } ]; return (

Discover More About WDI

Explore different aspects of our company, from our founding story to our future vision.

{sections.map((section, index) => { const IconComponent = section.icon; return ( navigateTo(section.link)} >

{section.title}

{section.description}

Learn More
); })}
); }; // Updated CTA Section with new design const InlineCTA = () => { return (
{/* Ready to Launch Badge */}
Ready to Launch?
{/* Main Heading */}

Want to Join a Team with WDI's Vision ?

{/* Subtitle */}

Discover our vibrant culture, exciting opportunities, and become part of our innovation journey.

{/* CTA Button */}
navigateTo('/company/careers')} >
Explore Careers at WDI
{/* Small benefit text */}

Remote opportunities • Growth culture • Innovation focus

); }; // Press and Recognition Section const PressRecognitionSection = () => { const press = [ { title: "Innovation Leader 2024", type: "Award", icon: Award, source: "Tech Excellence Awards", iconBg: "bg-yellow-500", iconColor: "text-white", link: "/company/awards-certifications" }, { title: "Best Employer in Tech", type: "Recognition", icon: Heart, source: "HR Today Magazine", iconBg: "bg-red-500", iconColor: "text-white", link: "/company/culture-values" }, { title: "Digital Transformation Partner", type: "Certification", icon: Shield, source: "Industry Certification Board", iconBg: "bg-blue-500", iconColor: "text-white", link: "/company/awards-certifications" }, { title: "Recent Press Coverage", type: "Media", icon: Newspaper, source: "Various Publications", iconBg: "bg-purple-500", iconColor: "text-white", link: "/company/press-media" } ]; return (

Recognition & Media Presence

Our achievements and industry recognition speak to our commitment to excellence.

{press.map((item, index) => { const IconComponent = item.icon; return ( {/* Header */}
{item.type}
{item.source}

{item.title}

{/* CTA */}
navigateTo(item.link)} >
Learn More
); })}
); }; // FAQ Section const FAQSection = () => { const faqs = [ { question: "When was WDI founded?", answer: "WDI was founded in 2018 with a vision to democratize access to enterprise-grade technology solutions for businesses of all sizes." }, { question: "Where is WDI headquartered?", answer: "WDI has offices in multiple locations globally, with key operations in the United States and India to serve clients across different time zones." }, { question: "What industries does WDI serve?", answer: "We serve a wide range of industries including FinTech, HealthTech, EdTech, E-commerce, Manufacturing, and many others, adapting our solutions to meet specific industry needs." }, { question: "How many employees does WDI have?", answer: "WDI has grown to over 150 team members worldwide, including developers, designers, project managers, and business analysts across various specializations." }, { question: "What makes WDI different from other agencies?", answer: "Our combination of technical expertise, industry experience, agile methodologies, and commitment to long-term client partnerships sets us apart in the market." } ]; return (

Frequently Asked Questions

{faqs.map((faq, index) => ( {faq.question} {faq.answer} ))}
); }; export function Company() { return (
); }