import { motion } from "framer-motion"; import { Bot, Brain, Calendar, Cpu, Eye, Layers, Lightbulb, MessageCircle, Rocket, Settings, Sparkles, TrendingUp, UserPlus, Zap, } from "lucide-react"; import { navigateTo } from "../App"; import { FAQSection } from "../components/FAQSection"; import { Footer } from "../components/Footer"; import { Navigation } from "../components/Navigation"; import { ProcessSection } from "../components/ProcessSection"; import { Badge } from "../components/ui/badge"; import { Button } from "../components/ui/button"; import { Card, CardContent } from "../components/ui/card"; import { ShimmerButton } from "../components/ui/shimmer-button"; import { Helmet } from "react-helmet-async"; // Enhanced Hero Section const HeroWithCTA = () => { return (
{/* Page Title and Meta Description */} Artificial Intelligence | Custom AI Solutions by WDI {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */}
{/* AI Services Label */} Artificial Intelligence {/* Main Heading - Left aligned, reduced font size */}

AI-Powered Innovation for Modern Business

Transform your business with cutting-edge artificial intelligence solutions that drive automation, insights, and competitive advantage.

{/* CTAs */} navigateTo('/contact/schedule-a-discovery-call')} onClick={() => navigateTo("/start-a-project")} >
AI Strategy Consultation
{/* Right side with stats */}
100+
AI Models Deployed
85%
Process Automation
40%
Cost Reduction
24/7
AI Operations
); }; // Enhanced Horizontal Tag Scroller with AI Technologies const HorizontalTagScroller = () => { const technologies = [ { name: "Machine Learning", icon: Brain, color: "text-blue-400" }, { name: "Natural Language Processing", icon: MessageCircle, color: "text-green-400", }, { name: "Computer Vision", icon: Eye, color: "text-purple-400" }, { name: "Deep Learning", icon: Layers, color: "text-cyan-400" }, { name: "Predictive Analytics", icon: TrendingUp, color: "text-orange-400", }, { name: "AI Automation", icon: Bot, color: "text-yellow-400" }, ]; return (

Advanced AI Technologies We Master

Cutting-edge artificial intelligence technologies that power next-generation business solutions.

{/* First set */} {technologies.map((tech, index) => { const IconComponent = tech.icon; return (
{tech.name}
); })} {/* Second and third sets for seamless loop */} {[...technologies, ...technologies].map((tech, index) => { const IconComponent = tech.icon; return (
{tech.name}
); })}
); }; // Why Choose WDI Section const SideBySideContentWithIcons = () => { const advantages = [ { id: "expertise", title: "AI Expertise", icon: Brain, }, { id: "automation", title: "Process Automation", icon: Bot, }, { id: "insights", title: "Data-Driven Insights", icon: TrendingUp, }, { id: "scalable", title: "Scalable Solutions", icon: Zap, }, { id: "innovation", title: "Continuous Innovation", icon: Lightbulb, }, ]; return (

Why Choose WDI for AI Solutions

Leading AI innovation with proven results and expertise.

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

{advantage.title}

); })}
); }; // Service Categories Grid const TabbedServiceDisplay = () => { const services = [ { title: "AI Strategy & Consulting", icon: Lightbulb, description: "Strategic AI roadmaps and implementation guidance for business transformation.", link: "/services/ai-strategy-consulting", }, { title: "AI-Powered Automation & Workflows", icon: Bot, description: "Intelligent automation solutions that streamline business processes.", link: "/services/ai-automation-workflows", }, { title: "AI Integration into Digital Products", icon: Zap, description: "Seamlessly integrate AI capabilities into existing digital products.", link: "/services/ai-integration-digital-products", }, { title: "Gen AI Integration", icon: Sparkles, description: "Leverage generative AI for content creation and enhanced user experiences.", link: "/services/gen-ai-integration-digital-products", }, { title: "AI Chatbots & Virtual Assistants", icon: MessageCircle, description: "Intelligent conversational AI solutions for customer engagement.", link: "/services/ai-chatbots-virtual-assistants", }, { title: "AI Model Deployment & MLOps", icon: Settings, description: "End-to-end ML operations for scalable AI model deployment.", link: "/services/ai-model-deployment-mlops", }, ]; return (

AI Services & Solutions

Comprehensive artificial intelligence services designed to transform your business operations and drive innovation.

{services.map((service, index) => { const IconComponent = service.icon; return ( navigateTo(service.link)} >

{service.title}

{service.description}

); })}
); }; // Updated CTA Section with new design const InlineCTA = () => { return (
{/* Ready to Launch Badge */}
Ready to Launch?
{/* Main Heading */}

Transform Your Business with AI Innovation

{/* Subtitle */}

Unlock the power of artificial intelligence to automate processes, gain insights, and drive competitive advantage.

{/* CTA Button */}
navigateTo("/contact/schedule-a-discovery-call")} onClick={() => navigateTo("/start-a-project")} >
Start Your AI Journey
{/* Small benefit text */}

Strategy consultation • AI readiness assessment • Custom solution design

); }; // AI Specialists Section const HireDevelopersSection = () => { const specialists = [ { title: "AI Engineers", icon: Brain, skills: ["TensorFlow", "PyTorch", "Scikit-learn", "Keras"], iconBg: "bg-blue-500", iconColor: "text-white", link: "/hire-talent/full-stack-developers", }, { title: "ML Engineers", icon: Cpu, skills: ["Python", "R", "MLOps", "Data Pipeline"], iconBg: "bg-green-500", iconColor: "text-white", link: "/hire-talent/full-stack-developers", }, { title: "Data Scientists", icon: TrendingUp, skills: ["Statistics", "Analytics", "Visualization", "Research"], iconBg: "bg-purple-500", iconColor: "text-white", link: "/hire-talent/full-stack-developers", }, { title: "AI Consultants", icon: Lightbulb, skills: ["Strategy", "Implementation", "Training", "Support"], iconBg: "bg-orange-500", iconColor: "text-white", link: "/hire-talent/full-stack-developers", }, ]; return (

Hire Our AI Specialists

Get access to expert AI professionals who build intelligent solutions that drive business transformation.

{specialists.map((specialist, index) => { const IconComponent = specialist.icon; return ( {/* Header */}
Artificial Intelligence

{specialist.title}

{/* Skills */}
{specialist.skills.map((skill) => ( {skill} ))}
{/* CTA */}
navigateTo(specialist.link)} >
Hire Now
); })}
); }; // FAQ data for AI Services const aiServicesFAQs = [ { question: "What types of AI solutions can WDI develop?", answer: "We develop a wide range of AI solutions including machine learning models, natural language processing systems, computer vision applications, predictive analytics, chatbots, and recommendation engines tailored to your business needs.", }, { question: "How do you ensure AI models are accurate and reliable?", answer: "We follow rigorous testing methodologies, use cross-validation techniques, implement continuous monitoring, and employ best practices in data quality management to ensure our AI models deliver accurate and reliable results.", }, { question: "Can you integrate AI into our existing software systems?", answer: "Yes, we specialize in seamlessly integrating AI capabilities into existing systems through APIs, microservices architecture, and custom integration solutions that work with your current technology stack.", }, { question: "What is your approach to data privacy and AI ethics?", answer: "We prioritize data privacy and ethical AI practices by implementing secure data handling, ensuring model transparency, addressing bias issues, and following industry standards and regulations like GDPR and AI governance frameworks.", }, { question: "How long does it take to develop and deploy an AI solution?", answer: "Development timelines vary based on complexity, but typically range from 3-6 months for custom AI solutions. We provide detailed project timelines during the planning phase and follow agile methodologies for faster delivery.", }, ]; export function ArtificialIntelligenceServices() { return (
); }