import { color, motion } from "framer-motion";
import {
Activity,
ArrowRight,
BarChart,
Boxes,
Building2,
ClipboardList,
Cloud,
CloudCog,
Code,
Component,
Container,
Database,
Eye,
Factory,
FileText,
GraduationCap,
Handshake,
LockKeyhole,
MessageSquare,
Network,
BarChart3 as PresentationChart,
RefreshCcw,
Rocket,
Shield,
Terminal,
TrendingUp,
Truck,
Users,
Users2,
Workflow,
Zap,
} from "lucide-react";
import { ImageWithFallback } from "../components/figma/ImageWithFallback";
import { Footer } from "../components/Footer";
import { Navigation } from "../components/Navigation";
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from "../components/ui/accordion";
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 awsLogo from "../src/images/aws-logo.png";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
// Enterprise Software Solutions Hero Section
const EnterpriseHeroWithCTA = () => {
const navigate = useNavigate();
return (
{/* Page Title and Meta Description */}
Enterprise Software Solutions | Tailored Services by WDI
{/* Canonical Link */}
{/* Open Graph Tags (for Facebook, LinkedIn) */}
{/* Twitter Card Tags */}
{/* Social Profiles (using JSON-LD Schema) */}
{/* Enterprise Label */}
Software Engineering
{/* Main Heading */}
Enterprise Software Solutions
Crafting custom, high-impact software tailored to streamline
large-scale operations, enhance productivity, and drive digital
transformation for enterprises.
{/* CTAs */}
navigate("/start-a-project")}
>
Transform Your Enterprise
Explore Our Work
{/* Right side with Enterprise Systems visualization */}
{/* Enterprise Systems Architecture */}
{/* Main Enterprise Hub */}
{/* Enterprise Header */}
{/* Enterprise Systems Grid */}
{/* ERP System */}
ERP
{["Finance", "HR", "Supply"].map((module, i) => (
{module}
))}
{/* CRM System */}
{/* BI Tools */}
{/* Integration Status */}
{/* Pulse Animation */}
{/* Enterprise Modules */}
{/* SCM */}
SCM
{/* Workflow */}
Workflow
{/* Security */}
Security
{/* Legacy */}
Legacy
{/* Supporting Systems */}
Cloud
B2B Portal
Analytics
{/* Connection Lines */}
{/* Lines from Enterprise Hub to modules */}
{/* Feature Badges */}
Scalable
Secure
Integrated
);
};
// Key Benefits of Custom Enterprise Software
const EnterpriseBenefits = () => {
const benefits = [
{
icon: Workflow,
title: "Process Optimization",
description: "Automate complex workflows and reduce manual errors.",
},
{
icon: BarChart,
title: "Enhanced Data Insights",
description:
"Centralized data for comprehensive reporting and analytics.",
},
{
icon: Network,
title: "Scalability & Integration",
description:
"Designed to grow with your business and integrate with existing systems.",
},
{
icon: Shield,
title: "Robust Security & Compliance",
description:
"Built to meet stringent industry standards and regulations.",
},
{
icon: Zap,
title: "Competitive Agility",
description: "Rapidly adapt to market changes and new opportunities.",
},
];
return (
Why Custom Enterprise Solutions from WDI?
{benefits.slice(0, 3).map((benefit, index) => {
const IconComponent = benefit.icon;
return (
{benefit.title}
{benefit.description}
);
})}
{/* Second row with 2 cards centered */}
{benefits.slice(3).map((benefit, index) => {
const IconComponent = benefit.icon;
return (
{benefit.title}
{benefit.description}
);
})}
);
};
// Enterprise Software Development Process
const EnterpriseProcess = () => {
const steps = [
{
title: "Business Analysis & Strategy",
description:
"Comprehensive assessment of current systems, business processes, and strategic goals to define the optimal enterprise solution roadmap.",
icon: ClipboardList,
},
{
title: "Architecture Design & Planning",
description:
"Designing scalable, secure system architecture with detailed technical specifications, integration points, and infrastructure requirements.",
icon: Building2,
},
{
title: "Agile Development & Iteration",
description:
"Iterative development using agile methodologies with regular stakeholder feedback, ensuring alignment with business objectives throughout the process.",
icon: Code,
},
{
title: "System Integration & Testing",
description:
"Comprehensive integration with existing enterprise systems, rigorous testing including performance, security, and user acceptance testing.",
icon: Network,
},
{
title: "Deployment & Training",
description:
"Seamless production deployment with comprehensive user training, change management support, and knowledge transfer to internal teams.",
icon: GraduationCap,
},
{
title: "Support & Evolution",
description:
"Ongoing maintenance, performance monitoring, feature enhancements, and system evolution to meet changing business requirements.",
icon: Activity,
},
];
return (
Our Strategic Approach to Enterprise Software
{/* Timeline line */}
{steps.map((step, index) => {
const IconComponent = step.icon;
const isEven = index % 2 === 0;
return (
{step.title}
{step.description}
{/* Timeline dot */}
);
})}
);
};
// Enterprise Software Services
const EnterpriseServices = () => {
const services = [
{
title: "Enterprise Resource Planning (ERP) Customization",
description: "Tailoring ERP systems to unique business needs.",
icon: Factory,
features: [
"Custom Modules",
"Workflow Design",
"Integration APIs",
"User Training",
],
},
{
title: "Customer Relationship Management (CRM) Development",
description: "Bespoke CRM solutions for sales, marketing, and service.",
icon: Handshake,
features: [
"Sales Pipeline",
"Customer Analytics",
"Automation",
"Multi-channel Support",
],
},
{
title: "Supply Chain Management (SCM) Systems",
description: "Optimizing logistics and inventory.",
icon: Truck,
features: [
"Inventory Tracking",
"Supplier Management",
"Logistics Optimization",
"Real-time Visibility",
],
},
{
title: "Business Intelligence (BI) Tools",
description: "Custom dashboards and reporting for data-driven decisions.",
icon: BarChart,
features: [
"Custom Dashboards",
"Advanced Analytics",
"Data Mining",
"Predictive Insights",
],
},
{
title: "Workflow Automation Platforms",
description: "Automating repetitive tasks across departments.",
icon: Workflow,
features: [
"Process Automation",
"Approval Workflows",
"Task Management",
"Integration Hub",
],
},
{
title: "Legacy System Migration & Modernization",
description: "Updating outdated systems for current needs.",
icon: RefreshCcw,
features: [
"Data Migration",
"System Upgrade",
"Cloud Migration",
"Zero Downtime",
],
},
{
title: "Custom B2B Portals & Platforms",
description:
"Secure, efficient digital interfaces for business partners.",
icon: Users2,
features: [
"Partner Portals",
"API Management",
"Role-based Access",
"Document Management",
],
},
];
return (
Our Comprehensive Enterprise Software Capabilities
{services.slice(0, 6).map((service, index) => {
const IconComponent = service.icon;
return (
{service.title}
{service.description}
Key Features:
{service.features.map((feature) => (
{feature}
))}
);
})}
{/* Last service card centered */}
{services.slice(6).map((service, index) => {
const IconComponent = service.icon;
return (
{service.title}
{service.description}
Key Features:
{service.features.map((feature) => (
{feature}
))}
);
})}
);
};
// Enterprise Software Tech Stack
const EnterpriseTechStack = () => {
const enterpriseLanguages = [
{
name: "Java",
logo: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg",
category: "Language",
color: "red", // Java: mature, robust — red often fits enterprise legacy systems
},
{
name: ".NET",
logo: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/dot-net/dot-net-original.svg",
category: "Framework",
color: "blue", // .NET ecosystem uses blue (Microsoft branding)
},
{
name: "Python",
logo: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg",
category: "Language",
color: "green", // Python often associated with versatility and learning
},
{
name: "Node.js",
logo: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-original.svg",
category: "Runtime",
color: "green", // Node.js = green (official branding & modern web dev)
},
];
const enterprisePlatforms = [
{ name: "SAP", icon: Factory, description: "Enterprise Resource Planning" },
{
name: "Oracle",
icon: Database,
description: "Database & Enterprise Applications",
},
{
name: "Microsoft Dynamics",
icon: Building2,
description: "Business Applications",
},
{
name: "Salesforce",
icon: Handshake,
description: "Customer Relationship Management",
},
];
const cloudPlatforms = [
{
name: "AWS",
logo: awsLogo, // Assuming you have the AWS logo imported
category: "Cloud",
color: "orange", // AWS official color
},
{
name: "Azure",
logo: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/azure/azure-original.svg",
category: "Cloud",
color: "blue", // Azure is Microsoft — uses blue branding
},
{
name: "Google Cloud",
logo: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/googlecloud/googlecloud-original.svg",
category: "Cloud",
color: "red", // Red is part of Google's multi-color brand
},
];
const enterpriseTools = [
{ name: "Docker", icon: Container, description: "Containerization" },
{ name: "Kubernetes", icon: Boxes, description: "Container Orchestration" },
{
name: "Microservices",
icon: Component,
description: "Architecture Pattern",
},
{
name: "Enterprise Databases",
icon: Database,
description: "Data Management",
},
];
return (
Leveraging Robust Enterprise-Grade Technologies
For reliability and performance at scale with proven enterprise
solutions.
{/* Enterprise Languages & Frameworks */}
Enterprise Languages & Frameworks
{enterpriseLanguages.map((tech, index) => {
// const IconComponent = tech.icon;
const colorClasses = {
blue: "bg-blue-500/20 text-blue-400 border-blue-500/30",
orange: "bg-orange-500/20 text-orange-400 border-orange-500/30",
green: "bg-green-500/20 text-green-400 border-green-500/30",
red: "bg-red-500/20 text-red-400 border-red-500/30",
};
return (
{tech.name}
{tech.category}
);
})}
{/* Enterprise Platforms */}
Enterprise Platforms
{enterprisePlatforms.map((platform, index) => {
const IconComponent = platform.icon;
return (
{platform.name}
{platform.description}
);
})}
{/* Cloud Platforms & Tools */}
{/* Cloud Platforms */}
Cloud Platforms
{cloudPlatforms.map((tech, index) => {
// const IconComponent = tech.icon;
const colorClasses = {
blue: "bg-blue-500/20 text-blue-400 border-blue-500/30",
orange: "bg-orange-500/20 text-orange-400 border-orange-500/30",
green: "bg-green-500/20 text-green-400 border-green-500/30",
red: "bg-red-500/20 text-red-400 border-red-500/30",
};
return (
{tech.name}
{tech.category}
);
})}
{/* Enterprise Tools */}
Enterprise Tools
{enterpriseTools.map((tool, index) => {
const IconComponent = tool.icon;
return (
{tool.name}
{tool.description}
);
})}
);
};
// Enterprise Software Case Studies
const EnterpriseCaseStudies = () => {
const caseStudies = [
{
title: "Global Manufacturing ERP Transformation",
client: "MegaCorp Industries",
description:
"Complete ERP system overhaul for multinational manufacturing company with 50+ locations, streamlining operations and reducing costs by 30%",
image:
"https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?w=400&h=300&fit=crop&auto=format",
results: "30% cost reduction, 50% faster reporting",
gradient: "from-blue-500/20 to-cyan-500/20",
features:
"ERP Modernization, Multi-location Integration, Real-time Analytics",
},
{
title: "Healthcare Enterprise Integration Platform",
client: "HealthSystem Network",
description:
"Unified healthcare management system integrating patient records, billing, and compliance across 20+ hospitals with HIPAA-compliant security",
image:
"https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=400&h=300&fit=crop&auto=format",
results: "95% compliance rating, 40% efficiency gain",
gradient: "from-green-500/20 to-emerald-500/20",
features: "HIPAA Compliance, System Integration, Workflow Automation",
},
{
title: "Financial Services Legacy Modernization",
client: "Premier Financial Group",
description:
"Migration of legacy banking systems to modern cloud-based architecture with enhanced security, compliance, and customer experience features",
image:
"https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=400&h=300&fit=crop&auto=format",
results: "Zero downtime migration, 60% performance boost",
gradient: "from-purple-500/20 to-pink-500/20",
features: "Legacy Migration, Cloud Architecture, Security Enhancement",
},
];
return (
Enterprise Solutions Driving Real Business Impact
{caseStudies.map((study, index) => (
{study.client}
{study.results}
{study.title}
{study.description}
Key Features:
{study.features}
))}
);
};
// Mid-Page CTA
const EnterpriseInlineCTA = () => {
const navigate = useNavigate();
return (
Ready to Streamline Your{" "}
Enterprise Operations?
Our experts help you identify opportunities for digital
transformation and build the right solutions.
navigate("/start-a-project")}
>
Get a Free Enterprise Software Consultation
);
};
// Hire Enterprise Talent
const HireEnterpriseTalent = () => {
const navigate = useNavigate();
const talentTypes = [
{
title: "Enterprise Architects",
description: "System architects with enterprise-scale experience",
icon: Building2,
skills: [
"System Architecture",
"Enterprise Patterns",
"Technology Strategy",
"Integration Design",
],
},
{
title: "Senior Java Developers",
description: "Expert Java developers for enterprise applications",
icon: Code,
skills: [
"Spring Framework",
"Enterprise Java",
"Microservices",
"REST APIs",
],
},
{
title: ".NET Enterprise Developers",
description: "Microsoft technology stack specialists",
icon: Terminal,
skills: [".NET Core", "C#", "Azure", "Entity Framework"],
},
{
title: "ERP Consultants",
description: "Specialists in ERP implementation and customization",
icon: Factory,
skills: ["SAP", "Oracle ERP", "Business Process", "System Integration"],
},
{
title: "DevOps Engineers",
description: "Infrastructure and deployment automation experts",
icon: CloudCog,
skills: ["Kubernetes", "Docker", "CI/CD", "Cloud Platforms"],
},
{
title: "Project Managers",
description: "Enterprise project management specialists",
icon: ClipboardList,
skills: [
"Agile",
"Stakeholder Management",
"Risk Management",
"Change Management",
],
},
];
return (
Build Your Enterprise Team with WDI Talent
Access highly experienced architects, project managers, and senior
developers skilled in complex enterprise environments.
{talentTypes.map((type, index) => {
const IconComponent = type.icon;
return (
{type.title}
{type.description}
Core Skills:
{type.skills.map((skill) => (
{skill}
))}
);
})}
navigate("/hire-talent/enterprise-software-developers")}
>
Hire Enterprise Talent
Request Profiles
);
};
// Enterprise Software FAQs
const EnterpriseFAQs = () => {
const faqs = [
{
question:
"How do you ensure data security and compliance for enterprise systems?",
answer:
"We implement comprehensive security frameworks including multi-layered encryption, role-based access controls, audit trails, and compliance with industry standards like SOC 2, GDPR, HIPAA, and PCI DSS. Our security approach includes regular penetration testing, vulnerability assessments, and adherence to enterprise security best practices. We also provide detailed compliance documentation and work with your security teams to meet specific regulatory requirements.",
},
{
question:
"What is the typical timeline for enterprise software implementation?",
answer:
"Enterprise software timelines vary based on scope and complexity, typically ranging from 6-18 months. Simple ERP customizations may take 3-6 months, while comprehensive enterprise transformations can take 12-24 months. We use agile methodologies with phased delivery to provide value incrementally. Timeline factors include system complexity, integration requirements, data migration scope, user training needs, and change management requirements.",
},
{
question: "Do you provide post-implementation support and maintenance?",
answer:
"Yes, we offer comprehensive post-implementation support including 24/7 monitoring, regular maintenance updates, performance optimization, bug fixes, and feature enhancements. Our support packages include different service levels (bronze, silver, gold, platinum) to match your business requirements. We also provide ongoing training, documentation updates, and strategic consulting to help you maximize your enterprise software investment.",
},
{
question: "How do you integrate with existing legacy systems?",
answer:
"We have extensive experience in legacy system integration using various approaches: API development for modern connectivity, ETL processes for data synchronization, middleware solutions for system communication, and gradual migration strategies to minimize disruption. We assess your existing infrastructure, map data flows, and create integration architectures that preserve business continuity while enabling modernization. Our approach ensures minimal downtime and seamless data migration.",
},
];
return (
Frequently Asked Questions
{faqs.map((faq, index) => (
{faq.question}
{faq.answer}
))}
);
};
// Final CTA Section
const EnterpriseFinalCTA = () => {
const navigate = useNavigate();
return (
Accelerate Your Digital Transformation with{" "}
WDI's Expertise
Partner with us for custom enterprise software solutions that
deliver efficiency, innovation, and a competitive edge.
navigate("/start-a-project")}
>
Transform Your Enterprise Now
ERP Customization • CRM Development • Legacy Modernization
{/* Background Decorative Elements */}
);
};
// Main Enterprise Software Solutions Page
export const EnterpriseSoftwareSolutions = () => {
return (
{/* */}
{/* Hero Section */}
{/* Benefits */}
{/* Case Studies */}
{/* Development Process */}
{/* Services */}
{/* Tech Stack */}
{/* Mid-Page CTA */}
{/* */}
{/* Hire Talent */}
{/* FAQs */}
{/* */}
{/* Final CTA */}
{/* Footer */}
);
};