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 { navigateTo } from "../App"; 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"; // Enhanced Hero Section const HeroWithCTA = () => { 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 and forward-thinking company dedicated to transforming businesses through cutting-edge technology and exceptional service.

{/* CTAs */} navigateTo('/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 core strengths that set us apart in the industry

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

{strength.title}

{strength.description}

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

Our Impact in Numbers

Measurable results that speak to our commitment and expertise

{stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
); }; // Learn More About WDI Section const LearnMoreSection = () => { 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 ( navigateTo(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 innovative 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 = () => { 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 */}
navigateTo('/contact')} onClick={() => navigateTo("/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 service. Since then, we've grown to become industry leaders in digital solutions." }, { question: "What makes WDI different from other development companies?", answer: "Our unique combination of technical expertise, innovative approach, and client-focused service sets us apart. We don't just deliver projects; we build lasting partnerships and drive real business value." }, { question: "How many clients has WDI served?", answer: "We've had the privilege of serving over 50 global clients across various industries, delivering more than 500 successful projects with a 98% client satisfaction rate." }, { question: "What industries does WDI specialize in?", answer: "We serve clients across multiple industries including fintech, healthcare, e-commerce, education, and enterprise solutions. Our diverse expertise allows us to adapt our solutions to any industry's specific needs." }, { question: "Does WDI offer ongoing support after project completion?", answer: "Absolutely! We believe in long-term partnerships with our clients. We provide comprehensive post-launch support, maintenance, updates, and continuous optimization to ensure your solutions evolve with your business needs." } ]; export const AboutWDI = () => { return (
{/* */}
); };