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.
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.
);
};
// 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 (