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 { FAQSection } from "../components/FAQSection"; 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 { GridPattern } from "../components/GridPattern"; import { ArrowRight, Users, Globe, Award, Target, Heart, Lightbulb, Rocket, TrendingUp, CheckCircle, Star, Coffee, Monitor, Calendar, Eye, Building, FileText, Settings, Trophy, BookOpen, MessageSquare, Briefcase, Mail } from "lucide-react"; import { Helmet } from "react-helmet-async"; import { CarouselTestimonials } from "@/components/CarouselTestimonials"; import { useNavigate } from "react-router-dom"; // Enhanced Hero Section const HeroWithCTA = () => { const navigate = useNavigate(); return (
{/* Page Title and Meta Description */} About WDI | Why Choose Us for Digital Innovation Success {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */}
{/* About WDI Label */} About WDI: Web Development Institute {/* Main Heading - Left aligned, reduced font size */}

Innovating the Future of Digital Solutions

WDI is a dynamic, AI‑driven company dedicated to transforming businesses through cutting‑edge technology and exceptional digital solutions.

{/* CTAs */} navigate('/services')}>
Explore Our Services
{/* Right side with company intro */}

With a strong foundation in technological innovation and customer satisfaction, we strive to deliver solutions that not only meet today's challenges but anticipate tomorrow's opportunities.

Our commitment to excellence drives us to continuously push the boundaries of what's possible in digital transformation.

); }; // Why Choose WDI Section const WhyChooseWDISection = () => { const strengths = [ { id: "innovation", title: "Innovation", description: "Pioneering cutting-edge technology solutions since 2018.", icon: Lightbulb }, { id: "expertise", title: "Expertise", description: "A team of seasoned professionals with deep industry knowledge.", icon: Award }, { id: "client-focus", title: "Client Focus", description: "Committed to delivering tailored solutions and exceptional service.", icon: Heart }, { id: "impact", title: "Impact", description: "Driving positive change in efficiency, sustainability, and connectivity.", icon: Target } ]; return (

Why Choose WDI?

Our AI‑driven core strengths that set us apart in the digital solutions and app development industry.

{strengths.map((strength, index) => { const IconComponent = strength.icon; return (

{strength.title}

{strength.description}

); })}
); }; // Our Impact in Numbers Section const ImpactNumbersSection = () => { const stats = [ { number: "2000+", label: "Projects Delivered" }, { number: "100+", label: "Expert Professionals" }, { number: "1000+", label: "Global Clients" }, { number: "24+", label: "Years of Excellence" } ]; return (

Our Impact in Numbers

Measurable AI‑driven results that speak to our commitment and expertise in digital solutions and app development.

{stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
); }; // Learn More About WDI Section const LearnMoreSection = () => { const navigate = useNavigate(); const sections = [ { title: "Our History", description: "Discover our journey from founding to becoming industry leaders", icon: BookOpen, link: "/about-wdi/our-history" }, { title: "Leadership Team", description: "Meet the visionary leaders guiding our company's success", icon: Users, link: "/about-wdi/leadership-team" }, { title: "Awards & Certifications", description: "Recognition for our excellence and commitment to quality", icon: Trophy, link: "/about-wdi/awards-certifications" }, { title: "Careers", description: "Join our innovative team and grow with us", icon: Briefcase, link: "/careers" }, { title: "Culture & Values", description: "The core principles that define our company culture", icon: Heart, link: "/about-wdi/culture-values" }, { title: "Press & Media", description: "Latest news, announcements, and media coverage", icon: FileText, link: "/about-wdi/press-media" } ]; return (

Learn More About WDI

Explore different aspects of our company and what makes us unique

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

{section.title}

{section.description}

Learn More
); })}
); }; // Client Testimonial Section const TestimonialSection = () => { return (
{/*

What Our Clients Say

*/}
{/*
{[...Array(5)].map((_, i) => ( ))}
"WDI has been instrumental in transforming our digital infrastructure. Their innovative approach and technical expertise exceeded our expectations."
Sarah Johnson
CTO, TechForward Solutions
*/}
); }; // Mission Section const MissionSection = () => { const principles = [ { title: "Innovate", description: "Continuously pushing the boundaries of technology", icon: Lightbulb }, { title: "Collaborate", description: "Building strong partnerships with our clients", icon: Users }, { title: "Deliver", description: "Ensuring exceptional results and lasting impact", icon: Target } ]; return (

Our Mission

To empower businesses worldwide with AI‑driven digital solutions that drive growth, enhance efficiency, and create lasting value. We believe in the transformative power of technology and are committed to making it accessible, reliable, and impactful for every client we serve.

{principles.map((principle, index) => { const IconComponent = principle.icon; return (

{principle.title}

{principle.description}

); })}
); }; // Updated CTA Section const InlineCTA = () => { const navigate = useNavigate(); return (
{/* Ready to Transform Badge */}
Ready to Transform Your Business?
{/* Main Heading */}

Join hundreds of successful companies who have chosen WDI as their technology partner

{/* Subtitle */}

Let's build something amazing together.

{/* CTA Buttons */}
navigate('/contact')} onClick={() => navigate("/start-a-project")} >
Contact Us Today
); }; // FAQ data for About WDI const aboutWDIFAQs = [ { question: "When was WDI founded?", answer: "WDI was founded in 1999 with a mission to transform businesses through cutting‑edge technology and exceptional digital solutions. Today, we are recognized industry leaders in AI‑powered app and web development." }, { question: "What makes WDI different from other development companies?", answer: "Our unique combination of AI‑driven technical expertise, innovative product thinking, and client‑first service sets us apart. We don’t just deliver projects we build lasting partnerships and drive measurable business growth." }, { question: "How many clients has WDI served?", answer: "We’ve had the privilege of serving over 50 global clients across multiple industries, delivering more than 500 successful AI‑driven web and mobile projects with a 98% client satisfaction rate." }, { question: "What industries does WDI specialize in?", answer: "We specialize in fintech, healthcare, e‑commerce, education, and enterprise digital solutions. Our AI‑driven development experience allows us to customize scalable products for any industry’s unique needs." }, { question: "Does WDI offer ongoing support after project completion?", answer: "Absolutely. We believe in long‑term partnerships and provide comprehensive post‑launch support, maintenance, updates, and continuous optimization so your AI‑driven solutions evolve with your business." } ]; export const AboutWDI = () => { return (
{/* {/* */} {/* */} {/*
); };