import React from "react"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { Badge } from "../components/ui/badge"; import { Card, CardContent } from "../components/ui/card"; import { ArrowRight, Lightbulb, Users2, Target, TrendingUp, Clock, Award, Briefcase, Heart, Newspaper, Star } from "lucide-react"; import { useNavigate } from "react-router-dom"; export const AboutWDIMain = () => { const navigate = useNavigate(); const keyHighlights = [ { icon: Lightbulb, title: "Innovation", description: "Pioneering cutting-edge technology solutions since 2018." }, { icon: Users2, title: "Expertise", description: "A team of seasoned professionals with deep industry knowledge." }, { icon: Target, title: "Client Focus", description: "Committed to delivering tailored solutions and exceptional service." }, { icon: TrendingUp, title: "Impact", description: "Driving positive change in efficiency, sustainability, and connectivity." } ]; const subPages = [ { icon: Clock, title: "Our History", description: "Discover our journey from founding to becoming industry leaders", href: "/company/our-history" }, { icon: Users2, title: "Leadership Team", description: "Meet the visionary leaders guiding our company's success", href: "/company/leadership-team" }, { icon: Award, title: "Awards & Certifications", description: "Recognition for our excellence and commitment to quality", href: "/company/awards-certifications" }, { icon: Briefcase, title: "Careers", description: "Join our innovative team and grow with us", href: "/company/careers" }, { icon: Heart, title: "Culture & Values", description: "The core principles that define our company culture", href: "/company/culture-values" }, { icon: Newspaper, title: "Press & Media", description: "Latest news, announcements, and media coverage", href: "/company/press-media" } ]; const testimonial = { quote: "WDI has been instrumental in transforming our digital infrastructure. Their innovative approach and technical expertise exceeded our expectations.", author: "Sarah Johnson", role: "CTO, TechForward Solutions", rating: 5 }; const stats = [ { number: "500+", label: "Projects Delivered" }, { number: "150+", label: "Expert Professionals" }, { number: "50+", label: "Global Clients" }, { number: "6+", label: "Years of Excellence" } ]; return (
{/* */} {/* Hero Section */}
Web Development Institute

About WDI: Web Development Institute

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.

{/* Introduction */}

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.

{/* Key Highlights */}

Why Choose WDI?

Our core strengths that set us apart in the industry

{keyHighlights.map((highlight, index) => (

{highlight.title}

{highlight.description}

))}
{/* Statistics */}

Our Impact in Numbers

Measurable results that speak to our commitment and expertise

{stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
{/* Internal Navigation - Sub Pages */}

Learn More About WDI

Explore different aspects of our company and what makes us unique

{subPages.map((page, index) => ( navigate(page.href)}>

{page.title}

{page.description}

))}
{/* Client Testimonial */}

What Our Clients Say

{[...Array(testimonial.rating)].map((_, i) => ( ))}
"{testimonial.quote}"

{testimonial.author}

{testimonial.role}

{/* Mission Statement */}

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.

Innovate

Continuously pushing the boundaries of technology

Collaborate

Building strong partnerships with our clients

Deliver

Ensuring exceptional results and lasting impact

{/* CTA Section */}

Ready to Transform Your Business?

Join hundreds of successful companies who have chosen WDI as their technology partner. Let's build something amazing together.

{/*
); };