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 { ArrowRight, Calendar, MapPin, Users, Award, Rocket, Globe } from "lucide-react"; export const OurHistory = () => { const milestones = [ { year: "2015", title: "Company Founded", description: "WDI was established with a vision to revolutionize digital development", icon: Rocket, achievements: ["First office in Silicon Valley", "Initial team of 5 developers", "First 10 clients"] }, { year: "2017", title: "International Expansion", description: "Expanded operations to serve clients across multiple continents", icon: Globe, achievements: ["Opened offices in 3 countries", "Served 100+ clients", "Team grew to 25 experts"] }, { year: "2019", title: "AI & ML Specialization", description: "Launched dedicated AI/ML division to meet growing market demand", icon: Users, achievements: ["AI/ML team formation", "200+ AI projects", "Industry recognition"] }, { year: "2021", title: "Industry Recognition", description: "Received multiple awards for innovation and client satisfaction", icon: Award, achievements: ["Best Development Company", "Client Satisfaction Award", "Innovation Excellence"] }, { year: "2023", title: "Global Leadership", description: "Established as a leading digital transformation partner worldwide", icon: MapPin, achievements: ["500+ projects delivered", "40+ countries served", "50+ expert team"] } ]; return (
{/* Hero Section */}
Our Story

A Journey of Innovation

From a small startup to a global digital transformation leader, discover how WDI has evolved to become a trusted partner for businesses worldwide.

{/* Timeline Section */}
{/* Timeline Line */}
{milestones.map((milestone, index) => (
{/* Timeline Dot */}
{/* Content */}
{milestone.year}

{milestone.title}

{milestone.description}

{milestone.achievements.map((achievement, achIndex) => (
{achievement}
))}
))}
{/* Growth Stats */}

Our Growth Journey

Numbers that tell the story of our continuous evolution and success

{[ { year: "2015", number: "5", label: "Team Members", color: "from-blue-400 to-blue-600" }, { year: "2017", number: "25", label: "Expert Developers", color: "from-green-400 to-green-600" }, { year: "2019", number: "35", label: "Specialists", color: "from-purple-400 to-purple-600" }, { year: "2023", number: "50+", label: "Global Team", color: "from-[#E5195E] to-[#FF6B9D]" } ].map((stat, index) => (
{stat.number}
{stat.label}
{stat.year}
))}
{/* Looking Forward */}

The Future is Bright

As we continue to grow and evolve, we remain committed to pushing the boundaries of what's possible in digital innovation.

); };