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 { AnimatedGradientText } from "../components/AnimatedGradientText";
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 { GridPattern } from "../components/GridPattern";
import { navigateTo } from "../App";
import {
Rocket, Target, Building, Zap, Shield, Users, Star,
ArrowRight, ChevronRight, Clock, TrendingUp, Layers,
Layout, Monitor, Lock, RefreshCcw, ShieldCheck,
MessageSquare, Heart, CheckCircle, Lightbulb, Coffee,
Download, Calendar, Camera, Music, Gamepad2,
CreditCard, Bell, Mail, Search, Home, MapPin,
Github, Slack, Figma, Chrome, ZapIcon, Video, MessageCircle,
Cog, Settings, Sparkles, Handshake, Eye, Award, UserPlus,
Bot, Server, Database, Briefcase, Factory, Cpu,
PieChart, BarChart3, Workflow, Wrench, Gauge
} from "lucide-react";
// Enhanced Hero Section
const HeroWithCTA = () => {
return (
{/* Solutions Label */}
Our Solutions
{/* Main Heading - Left aligned, reduced font size */}
Strategic
Business Solutions
for Digital Success
From startup MVPs to enterprise transformations, we deliver end-to-end solutions that drive measurable business outcomes.
{/* CTAs */}
navigateTo('/contact/schedule-a-discovery-call')}>
Schedule Strategy Call
navigateTo('/case-studies')}
>
Success Stories
{/* Right side with stats */}
);
};
// Enhanced Horizontal Tag Scroller with Solution Categories
const HorizontalTagScroller = () => {
const categories = [
{ name: "Digital Product Development", icon: Rocket, color: "text-blue-400" },
{ name: "MVP & Startup Launch", icon: Target, color: "text-green-400" },
{ name: "Legacy System Rebuilds", icon: RefreshCcw, color: "text-purple-400" },
{ name: "Dedicated Development Centers", icon: Building, color: "text-cyan-400" },
{ name: "Business Process Automation", icon: Workflow, color: "text-orange-400" },
{ name: "Compliance-Ready Systems", icon: Shield, color: "text-yellow-400" }
];
return (
Our Strategic
Solution Categories
Comprehensive business solutions designed to transform your operations and accelerate growth.
{/* 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 Solutions Section
const SideBySideContentWithIcons = () => {
const advantages = [
{
id: "strategy",
title: "Strategic Approach",
icon: Target
},
{
id: "scalability",
title: "Scalable Solutions",
icon: TrendingUp
},
{
id: "delivery",
title: "Proven Delivery",
icon: CheckCircle
},
{
id: "partnership",
title: "True Partnership",
icon: Handshake
},
{
id: "innovation",
title: "Innovation-First",
icon: Lightbulb
}
];
return (
Why Choose
WDI
Solutions
Strategic partnerships that deliver measurable results and drive sustainable growth.
{advantages.map((advantage, index) => {
const IconComponent = advantage.icon;
return (
{advantage.title}
);
})}
);
};
// Solution Categories Grid
const TabbedSolutionDisplay = () => {
const solutions = [
{
title: "Digital Product Development",
icon: Rocket,
description: "End-to-end product development from ideation to market launch.",
link: "/digital-product-development",
features: ["Full Product Lifecycle", "Market Research", "Go-to-Market Strategy"]
},
{
title: "MVP & Startup Launch",
icon: Target,
description: "Rapid prototyping and MVP development for startups and entrepreneurs.",
link: "/mvp-startup-launch",
features: ["Rapid Prototyping", "Market Validation", "Investor-Ready Demo"]
},
{
title: "Legacy System Rebuilds",
icon: RefreshCcw,
description: "Modernization of legacy systems with cutting-edge technology.",
link: "/legacy-system-rebuilds",
features: ["System Modernization", "Data Migration", "Zero Downtime"]
},
{
title: "Dedicated Development Centers",
icon: Building,
description: "Offshore development centers tailored to your business needs.",
link: "/dedicated-development-centers",
features: ["Dedicated Teams", "Cost Optimization", "24/7 Operations"]
},
{
title: "Business Process Automation",
icon: Workflow,
description: "Streamline operations with intelligent automation solutions.",
link: "/business-process-automation",
features: ["Process Optimization", "AI Integration", "Workflow Automation"]
},
{
title: "Compliance-Ready Systems",
icon: Shield,
description: "Secure, compliant systems for regulated industries.",
link: "/compliance-ready-systems",
features: ["Regulatory Compliance", "Security First", "Audit Ready"]
}
];
return (
Complete Solution Portfolio
Strategic business solutions designed to transform your operations and accelerate digital transformation.
{solutions.map((solution, index) => {
const IconComponent = solution.icon;
return (
navigateTo(solution.link)}
>
{solution.title}
{solution.description}
{/* Features */}
{solution.features.map((feature, idx) => (
{feature}
))}
Learn More
);
})}
);
};
// Updated CTA Section with new design
const InlineCTA = () => {
return (
{/* Ready to Transform Badge */}
{/* Main Heading */}
Let's Build Your Next
Strategic Solution
{/* Subtitle */}
Partner with us to transform your business challenges into competitive advantages with proven digital solutions.
{/* CTA Button */}
navigateTo('/contact/schedule-a-discovery-call')}
>
Schedule Strategy Session
{/* Small benefit text */}
Free consultation • Solution roadmap • Strategic guidance
);
};
// FAQ data for Solutions
const solutionsFAQs = [
{
question: "What types of solutions does WDI offer?",
answer: "We offer comprehensive business solutions including digital product development, MVP launches, legacy system modernization, dedicated development centers, business process automation, and compliance-ready systems for regulated industries."
},
{
question: "How do you approach solution development?",
answer: "We begin with a strategic assessment of your business needs, followed by solution design, architecture planning, development, testing, and deployment. Our approach ensures solutions align with your business objectives and deliver measurable results."
},
{
question: "Can you help with legacy system modernization?",
answer: "Yes, we specialize in legacy system rebuilds and modernization. We assess your existing systems, plan migration strategies, ensure data integrity, and implement modern solutions with minimal business disruption."
},
{
question: "Do you provide dedicated development teams?",
answer: "Absolutely! We offer dedicated offshore development centers with skilled teams that become an extension of your organization. This model provides cost optimization, scalability, and 24/7 development capabilities."
},
{
question: "How do you ensure compliance in regulated industries?",
answer: "We have extensive experience in regulated industries and follow strict compliance frameworks. Our solutions include security audits, regulatory compliance checks, documentation, and ongoing monitoring to ensure adherence to industry standards."
}
];
export function Solutions() {
return (
);
}