import { motion } from "framer-motion";
import {
Bot,
Brain,
Calendar,
Cpu,
Eye,
Layers,
Lightbulb,
MessageCircle,
Rocket,
Settings,
Sparkles,
TrendingUp,
UserPlus,
Zap,
} from "lucide-react";
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";
import { useNavigate } from "react-router-dom";
// Enhanced Hero Section
const HeroWithCTA = () => {
const navigate = useNavigate();
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 AI mobile app
development and artificial intelligence solutions that drive
automation, insights, and competitive advantage.
Cutting‑edge artificial intelligence technologies that power
next‑generation business solutions and AI‑powered features for
modern mobile and web applications.
{/* 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 (
);
};
// Service Categories Grid
const TabbedServiceDisplay = () => {
const navigate = useNavigate();
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, including AI mobile
app development and AI‑powered features, designed to transform your
business operations and drive innovation.
Unlock the power of artificial intelligence to automate processes,
gain insights, and drive competitive advantage with AI‑powered
mobile and web solutions.
);
};
// 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 and AI mobile app development requirements.",
},
{
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 for your AI‑powered applications.",
},
{
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 and support AI‑powered design.",
},
{
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 for responsible AI solutions.",
},
{
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 of AI‑powered features.",
},
];
export function ArtificialIntelligenceServices() {
return (