import { motion } from "framer-motion";
import {
Bot,
Brain,
Calendar,
CheckCircle,
ChevronRight,
Code,
Eye,
Globe,
Lightbulb,
Palette,
Rocket,
Server,
Smartphone,
TrendingUp,
Users
} from "lucide-react";
import { FAQSection } from "../components/FAQSection";
import { Footer } from "../components/Footer";
import { Navigation } from "../components/Navigation";
import { ProcessSection } from "../components/ProcessSection";
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 */}
Get Expert Digital Services Today | WDI Game-Changing Solutions
{/* Canonical Link */}
{/* Open Graph Tags (for Facebook, LinkedIn) */}
{/* Twitter Card Tags */}
{/* Social Profiles (using JSON-LD Schema) */}
{/* Services Label */}
Our Services
{/* Main Heading - Left aligned, reduced font size */}
Comprehensive
Digital Solutions
for Modern Business
From mobile apps to AI solutions, we deliver end-to-end digital services that transform ideas into powerful business solutions.
{/* CTAs */}
navigate('/contact/schedule-a-discovery-call')}
onClick={() => navigate("/start-a-project")}
>
Discuss Your Project
navigate('/case-studies')}
>
View Our Work
{/* Right side with stats */}
);
};
// Enhanced Horizontal Tag Scroller with Service Categories
const HorizontalTagScroller = () => {
const categories = [
{ name: "Mobile Development", icon: Smartphone, color: "text-blue-400" },
{ name: "Web Solutions", icon: Globe, color: "text-green-400" },
{ name: "Software Engineering", icon: Code, color: "text-purple-400" },
{ name: "UI/UX Design", icon: Palette, color: "text-cyan-400" },
{ name: "AI & Machine Learning", icon: Brain, color: "text-orange-400" },
{ name: "Cloud Solutions", icon: Server, color: "text-yellow-400" }
];
return (
Our Core
Service Categories
Comprehensive digital services covering every aspect of modern technology solutions.
{/* First set */}
{categories.map((category, index) => {
const IconComponent = category.icon;
return (
);
})}
{/* Second and third sets for seamless loop */}
{[...categories, ...categories].map((category, index) => {
const IconComponent = category.icon;
return (
);
})}
);
};
// Why Choose WDI Section
const SideBySideContentWithIcons = () => {
const advantages = [
{
id: "expertise",
title: "Deep Technical Expertise",
icon: Brain
},
{
id: "quality",
title: "Quality Assurance",
icon: CheckCircle
},
{
id: "agile",
title: "Agile Methodology",
icon: TrendingUp
},
{
id: "support",
title: "24/7 Support",
icon: Users
},
{
id: "innovation",
title: "Innovation Focus",
icon: Lightbulb
}
];
return (
Why Choose
WDI
Services
Delivering excellence in every project with proven expertise and innovation.
{advantages.map((advantage, index) => {
const IconComponent = advantage.icon;
return (
{advantage.title}
);
})}
);
};
// Service Categories Grid
const TabbedServiceDisplay = () => {
const services = [
{
title: "Mobile App Development",
icon: Smartphone,
description: "Native and cross-platform mobile applications for iOS and Android.",
link: "/services/mobile-app-development"
},
{
title: "Web & Cloud Solutions",
icon: Globe,
description: "Scalable web applications and cloud infrastructure solutions.",
link: "/web-cloud"
},
{
title: "Software Engineering",
icon: Code,
description: "Enterprise software systems and custom development solutions.",
link: "/software-engineering"
},
{
title: "Design & User Experience",
icon: Palette,
description: "User-centered design and interface development services.",
link: "/design-experience"
},
{
title: "Artificial Intelligence",
icon: Brain,
description: "AI-powered solutions and machine learning implementations.",
link: "/artificial-intelligence"
},
{
title: "Machine Learning",
icon: Bot,
description: "Custom ML models and data science solutions.",
link: "/machine-learning"
}
];
const navigate = useNavigate();
return (
Complete Service Portfolio
End-to-end digital solutions designed to accelerate your business growth and digital transformation.
{services.map((service, index) => {
const IconComponent = service.icon;
return (
navigate(service.link)}
>
{service.title}
{service.description}
Explore Services
);
})}
);
};
// Updated CTA Section with new design
const InlineCTA = () => {
const navigate = useNavigate();
return (
{/* Ready to Launch Badge */}
{/* Main Heading */}
Transform Your Business with
Expert Digital Services
{/* Subtitle */}
From concept to deployment, we deliver comprehensive digital solutions that drive growth and innovation.
{/* CTA Button */}
navigate('/contact/schedule-a-discovery-call')}
>
Start Your Project
{/* Small benefit text */}
Free consultation • Project roadmap • Technical guidance
);
};
// FAQ data for Services
const servicesFAQs = [
{
question: "What types of services does WDI offer?",
answer: "We offer comprehensive digital services including mobile app development, web applications, software engineering, UI/UX design, artificial intelligence, machine learning, cloud solutions, and digital transformation consulting."
},
{
question: "How do you approach new projects?",
answer: "We start with a discovery phase to understand your business goals, followed by strategic planning, design, development, testing, and deployment. We maintain close collaboration throughout the entire process."
},
{
question: "Do you provide ongoing support after project completion?",
answer: "Yes, we offer comprehensive post-launch support including maintenance, updates, bug fixes, performance optimization, and feature enhancements to ensure your solution continues to meet your business needs."
},
{
question: "Can you work with our existing technology stack?",
answer: "Absolutely! We have experience with a wide range of technologies and can integrate with your existing systems, APIs, databases, and infrastructure while recommending improvements where beneficial."
},
{
question: "What is your typical project timeline?",
answer: "Project timelines vary based on complexity and scope. Simple projects may take 6-12 weeks, while enterprise solutions can take 6-12 months. We provide detailed timelines during the planning phase."
}
];
export function Services() {
return (
);
}