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";
import { Helmet } from "react-helmet-async";
// Enhanced Hero Section
const HeroWithCTA = () => {
return (
{/* Page Title and Meta Description */}
Company Overview | Technology Company with a Mission | WDI
{/* Canonical Link */}
{/* Open Graph Tags (for Facebook, LinkedIn) */}
{/* Twitter Card Tags */}
{/* Social Profiles (using JSON-LD Schema) */}
{/* 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) => (
);
};
// 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 (