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";
// Enhanced Hero Section
const HeroWithCTA = () => {
return (
{/* 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
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.
Join hundreds of successful companies who have chosen WDI as their technology partner
{/* Subtitle */}
Let's build something amazing together.
{/* CTA Buttons */}
navigateTo('/contact')}
>
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 (