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 { DollarSign, Stethoscope, GraduationCap, ShoppingCart, Monitor, Truck, Factory, Users, Star, ArrowRight, ChevronRight, Clock, TrendingUp, Building, Cpu, Calendar, Eye, Target, Zap, CheckCircle, Lightbulb, Award, Handshake, Heart } from "lucide-react"; import { useNavigate } from "react-router-dom"; // Enhanced Hero Section const HeroWithCTA = () => { const navigate = useNavigate(); return (
{/* Industries Label */} Industries We Serve {/* Main Heading */}

Industry-Specific Digital Solutions That Drive Results

From FinTech to HealthTech, we deliver specialized solutions tailored to the unique challenges and opportunities of your industry.

{/* CTAs */} navigate('/contact/schedule-a-discovery-call')}>
Discuss Your Industry
{/* Right side with stats */}
15+
Industries Served
300+
Industry Projects
98%
Client Success Rate
25+
Years Experience
); }; // Industry Categories Grid const IndustryGrid = () => { const navigate = useNavigate(); const industries = [ { title: "Financial Services", icon: DollarSign, description: "FinTech, Banking, WealthTech, and Real Estate solutions", link: "/industries/fintech-banking-apps", features: ["Payment Systems", "Trading Platforms", "Digital Banking", "Compliance"], color: "text-green-400", bgGradient: "from-green-500/20 to-emerald-500/20" }, { title: "Healthcare & Wellness", icon: Stethoscope, description: "HealthTech applications and medical compliance solutions", link: "/industries/healthcare/healthtech-applications", features: ["HIPAA Compliance", "Telemedicine", "Health Records", "Fitness Apps"], color: "text-red-400", bgGradient: "from-red-500/20 to-pink-500/20" }, { title: "Learning & Education", icon: GraduationCap, description: "EdTech platforms and virtual learning management systems", link: "/industries/education/edtech-platforms", features: ["LMS Platforms", "Virtual Classrooms", "E-Learning", "Assessment Tools"], color: "text-blue-400", bgGradient: "from-blue-500/20 to-cyan-500/20" }, { title: "Commerce & Consumer", icon: ShoppingCart, description: "E-commerce, food delivery, and travel booking systems", link: "/industries/commerce/ecommerce-marketplaces", features: ["Marketplaces", "Food Delivery", "Travel Booking", "Event Ticketing"], color: "text-orange-400", bgGradient: "from-orange-500/20 to-yellow-500/20" }, { title: "Media & Community", icon: Monitor, description: "OTT streaming, social platforms, and fan engagement", link: "/industries/media/ott-streaming-apps", features: ["Streaming Apps", "Social Networks", "Content Management", "Fan Engagement"], color: "text-purple-400", bgGradient: "from-purple-500/20 to-indigo-500/20" }, { title: "Mobility & Logistics", icon: Truck, description: "Transportation apps and supply chain management", link: "/industries/mobility/transportation-apps", features: ["Fleet Management", "Route Optimization", "On-Demand Services", "Tracking"], color: "text-yellow-400", bgGradient: "from-yellow-500/20 to-amber-500/20" }, { title: "Industrial & Manufacturing", icon: Factory, description: "Manufacturing automation and AgriTech platforms", link: "/industries/industrial/manufacturing-automation", features: ["IoT Solutions", "Automation", "Monitoring Systems", "AgriTech"], color: "text-gray-400", bgGradient: "from-gray-500/20 to-slate-500/20" }, { title: "Emerging Technologies", icon: Cpu, description: "AI, Blockchain, and next-generation technology solutions", link: "/industries/industrial/oil-gas-monitoring-systems", features: ["AI Integration", "Blockchain", "IoT", "Smart Systems"], color: "text-cyan-400", bgGradient: "from-cyan-500/20 to-teal-500/20" } ]; return (

Industries We Transform

Deep industry expertise combined with cutting-edge technology to deliver solutions that drive real business impact.

{industries.map((industry, index) => { const IconComponent = industry.icon; return ( navigate(industry.link)} > {/* Header */}

{industry.title}

{industry.description}

{/* Features */}
{industry.features.map((feature, idx) => (
{feature}
))}
{/* CTA */}
Explore Solutions
); })}
); }; // Why Choose WDI for Industry Solutions const WhyChooseWDI = () => { const advantages = [ { id: "expertise", title: "Industry Expertise", icon: Award }, { id: "compliance", title: "Compliance Ready", icon: CheckCircle }, { id: "scalability", title: "Scalable Solutions", icon: TrendingUp }, { id: "innovation", title: "Innovation-First", icon: Lightbulb }, { id: "partnership", title: "Strategic Partnership", icon: Handshake } ]; return (

Why Industry Leaders Choose WDI

Deep domain knowledge meets cutting-edge technology.

{advantages.map((advantage, index) => { const IconComponent = advantage.icon; return (

{advantage.title}

); })}
); }; // Updated CTA Section const InlineCTA = () => { const navigate = useNavigate(); return (
{/* Add subtle decorative elements matching site theme */}
{/* Badge */}
Industry-Specific Solutions
{/* Main Heading */}

Ready to Transform Your{" "} Industry?

{/* Subtitle */}

Let's discuss how our industry expertise can accelerate your digital transformation.

{/* CTA Button */} navigate('/contact/schedule-a-discovery-call')}>
Schedule Industry Consultation
); }; // FAQ data for Industries const industriesFAQs = [ { question: "What industries does WDI specialize in?", answer: "We specialize in 15+ industries including FinTech, HealthTech, EdTech, E-commerce, Media & Entertainment, Logistics, Manufacturing, and emerging technologies. Our team has deep domain expertise in each vertical." }, { question: "How do you ensure compliance with industry regulations?", answer: "We have extensive experience with industry-specific regulations like HIPAA for healthcare, PCI DSS for payments, GDPR for data protection, and SOX for financial services. Our solutions are built with compliance in mind from the ground up." }, { question: "Can you work with our existing industry-specific systems?", answer: "Absolutely! We have experience integrating with various industry-specific platforms, legacy systems, and third-party services. We ensure seamless data flow and maintain existing business processes while modernizing your technology stack." }, { question: "Do you provide ongoing support for industry-specific solutions?", answer: "Yes, we offer comprehensive post-launch support including regulatory updates, security patches, performance optimization, and feature enhancements. We understand that industry requirements evolve and ensure your solutions stay current." }, { question: "How do you stay updated with industry trends and regulations?", answer: "Our team continuously monitors industry trends, regulatory changes, and emerging technologies. We participate in industry conferences, maintain partnerships with technology vendors, and have dedicated research teams for each vertical we serve." } ]; export function Industries() { return (
{/* */} {/*
); }