2025-07-11 16:54:37 +05:30
import { motion } from "framer-motion" ;
import {
AlertTriangle ,
ArrowRight ,
BarChart3 ,
Bot ,
Brain ,
Building ,
Calendar ,
CheckCircle ,
Code ,
Cog ,
DollarSign ,
Download ,
Factory ,
Gauge ,
Lightbulb ,
Loader ,
MessageSquare ,
Network ,
Rocket ,
Search ,
Shield ,
Target ,
TrendingUp ,
Upload ,
Users ,
X ,
2025-07-22 16:14:11 +05:30
Zap ,
2025-07-11 16:54:37 +05:30
} from "lucide-react" ;
import { ImageWithFallback } from "../components/figma/ImageWithFallback" ;
import { Footer } from "../components/Footer" ;
import { Navigation } from "../components/Navigation" ;
2025-07-22 16:14:11 +05:30
import {
Accordion ,
AccordionContent ,
AccordionItem ,
AccordionTrigger ,
} from "../components/ui/accordion" ;
2025-07-11 16:54:37 +05:30
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" ;
2025-09-23 20:13:31 +05:30
import { useNavigate } from "react-router-dom" ;
2025-07-22 19:42:26 +05:30
import { Helmet } from "react-helmet-async" ;
2025-07-11 16:54:37 +05:30
// Business Process Automation Hero Section
const BusinessProcessAutomationHero = ( ) = > {
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
2025-07-11 16:54:37 +05:30
return (
< section className = "relative py-20 overflow-hidden bg-black" >
2025-07-22 19:42:26 +05:30
< Helmet >
2025-07-23 19:52:24 +05:30
{ /* Page Title and Meta Description */ }
< title > Business Process Automation Services by WDI < / title >
< meta
name = "description"
content = "WDI's business process automation streamlines workflows, reduces manual tasks, and drives operational excellence with AI-powered solutions for growth."
/ >
{ /* Canonical Link */ }
2026-04-07 15:12:01 +05:30
< link
rel = "canonical"
href = "https://www.wdipl.com/solutions/business-process-automation"
/ >
2025-07-23 19:52:24 +05:30
{ /* Open Graph Tags (for Facebook, LinkedIn) */ }
2026-04-07 15:12:01 +05:30
< meta
property = "og:title"
content = "Business Process Automation Services by WDI"
/ >
2025-07-23 19:52:24 +05:30
< meta
property = "og:description"
content = "WDI's business process automation streamlines workflows, reduces manual tasks, and drives operational excellence with AI-powered solutions for growth."
/ >
< meta property = "og:url" content = "https://www.wdipl.com/services" / >
< meta property = "og:type" content = "website" / >
2026-04-07 15:12:01 +05:30
< meta
property = "og:image"
content = "https://www.wdipl.com/your-preview-image.jpg"
/ >
2025-07-23 19:52:24 +05:30
{ /* Twitter Card Tags */ }
< meta name = "twitter:card" content = "summary_large_image" / >
2026-04-07 15:12:01 +05:30
< meta
name = "twitter:title"
content = "Business Process Automation Services by WDI"
/ >
2025-07-23 19:52:24 +05:30
< meta
name = "twitter:description"
content = "WDI's business process automation streamlines workflows, reduces manual tasks, and drives operational excellence with AI-powered solutions for growth."
/ >
2026-04-07 15:12:01 +05:30
< meta
name = "twitter:image"
content = "https://www.wdipl.com/your-preview-image.jpg"
/ >
2025-07-23 19:52:24 +05:30
{ /* Social Profiles (using JSON-LD Schema) */ }
< script type = "application/ld+json" >
{ `
2025-07-22 19:42:26 +05:30
{
"@context" : "https://schema.org" ,
"@type" : "Organization" ,
"name" : "WDI" ,
"url" : "https://www.wdipl.com" ,
"sameAs" : [
"https://www.facebook.com/wdideas" ,
"https://www.linkedin.com/in/website-developers-india/" ,
"https://www.instagram.com/wdipl/"
]
}
` }
2025-07-23 19:52:24 +05:30
< / script >
< / Helmet >
2025-07-11 16:54:37 +05:30
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "grid lg:grid-cols-2 gap-16 items-center min-h-[90vh]" >
< motion.div
initial = { { opacity : 0 , x : - 50 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 } }
className = "space-y-8"
>
{ /* Solutions Label */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 } }
>
2025-07-22 16:14:11 +05:30
< span className = "text-white/70 text-sm font-medium" >
Solutions
< / span >
2025-07-11 16:54:37 +05:30
< / motion.div >
{ /* Main Heading */ }
< div className = "space-y-6" >
< h1 className = "text-4xl md:text-5xl lg:text-6xl font-semibold text-white leading-tight" >
Business Process Automation
< / h1 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-lg text-gray-300 leading-relaxed max-w-lg" >
2025-07-22 16:14:11 +05:30
Streamline your operations , reduce manual errors , and boost
productivity by automating key business processes with
2026-04-07 15:12:01 +05:30
intelligent , scalable solutions that integrate seamlessly into
your digital product development ecosystem .
2025-07-11 16:54:37 +05:30
< / p >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* CTAs */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.3 } }
className = "flex flex-col sm:flex-row gap-4"
>
2025-07-22 16:14:11 +05:30
< ShimmerButton
className = "text-lg px-8 py-4"
2025-09-23 20:13:31 +05:30
onClick = { ( ) = > navigate ( "/start-a-project" ) }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-2" >
< MessageSquare className = "w-5 h-5 flex-shrink-0" / >
< span > Get a Free Consultation < / span >
< / div >
< / ShimmerButton >
< Button
variant = "outline"
size = "lg"
className = "text-lg px-8 py-4 h-auto border-gray-600 text-gray-300 hover:bg-gray-800 hover:text-white"
>
< div className = "inline-flex items-center gap-2" >
< Lightbulb className = "w-5 h-5 flex-shrink-0" / >
2025-07-22 16:14:11 +05:30
< span > Discover Automation Solutions < / span >
2025-07-11 16:54:37 +05:30
< / div >
< / Button >
< / motion.div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Right side with Automation Workflow Visualization */ }
< motion.div
initial = { { opacity : 0 , x : 50 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
className = "relative flex flex-col items-center"
>
{ /* Automation Workflow Scene */ }
< div className = "relative w-full max-w-2xl mx-auto" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
className = "relative"
>
{ /* Main Automation Dashboard */ }
< motion.div
initial = { { opacity : 0 , scale : 0.8 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.8 , delay : 0.6 } }
className = "relative bg-gray-900 rounded-2xl p-8 mx-auto max-w-lg shadow-2xl border border-gray-700"
>
{ /* Automation Workflow */ }
< div className = "relative mb-8" >
{ /* Workflow Header */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 1.0 } }
className = "text-center mb-6"
>
2025-07-22 16:14:11 +05:30
< h3 className = "text-xl font-semibold text-white mb-2" >
Automated Workflow
< / h3 >
2025-07-11 16:54:37 +05:30
< div className = "flex items-center justify-center gap-4" >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-blue-500/20 text-blue-300 border-blue-500/30 text-xs"
>
2025-07-11 16:54:37 +05:30
< Cog className = "w-3 h-3 mr-1" / >
RPA Active
< / Badge >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-green-500/20 text-green-300 border-green-500/30 text-xs"
>
2025-07-11 16:54:37 +05:30
< Bot className = "w-3 h-3 mr-1" / >
AI Enabled
< / Badge >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Workflow Steps Visualization */ }
< motion.div
initial = { { opacity : 0 , scale : 0.8 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.8 , delay : 1.2 } }
className = "relative"
>
{ /* Workflow Steps */ }
< div className = "space-y-4" >
{ [
2025-07-22 16:14:11 +05:30
{
step : "Input" ,
icon : Download ,
status : "complete" ,
delay : 1.4 ,
} ,
{
step : "Process" ,
icon : Cog ,
status : "active" ,
delay : 1.6 ,
} ,
{
step : "Validate" ,
icon : Shield ,
status : "pending" ,
delay : 1.8 ,
} ,
{
step : "Output" ,
icon : Upload ,
status : "pending" ,
delay : 2.0 ,
} ,
2025-07-11 16:54:37 +05:30
] . map ( ( item , i ) = > (
< motion.div
key = { i }
initial = { { opacity : 0 , x : - 20 } }
animate = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.5 , delay : item.delay } }
className = "flex items-center gap-4"
>
2025-07-22 16:14:11 +05:30
< div
2026-04-07 15:12:01 +05:30
className = { ` w-10 h-10 rounded-full flex items-center justify-center border-2 ${
item . status === "complete"
2025-07-22 16:14:11 +05:30
? "bg-green-500/20 border-green-500/30"
: item . status === "active"
2025-07-23 19:52:24 +05:30
? "bg-blue-500/20 border-blue-500/30"
: "bg-gray-500/20 border-gray-500/30"
2026-04-07 15:12:01 +05:30
} ` }
2025-07-22 16:14:11 +05:30
>
< item.icon
2026-04-07 15:12:01 +05:30
className = { ` w-5 h-5 ${
item . status === "complete"
2025-07-22 16:14:11 +05:30
? "text-green-400"
: item . status === "active"
2025-07-23 19:52:24 +05:30
? "text-blue-400"
: "text-gray-400"
2026-04-07 15:12:01 +05:30
} ` }
2025-07-22 16:14:11 +05:30
/ >
{ item . status === "active" && (
2025-07-11 16:54:37 +05:30
< motion.div
2025-07-22 16:14:11 +05:30
animate = { {
scale : [ 1 , 1.2 , 1 ] ,
opacity : [ 0.5 , 1 , 0.5 ] ,
} }
2025-07-11 16:54:37 +05:30
transition = { { duration : 2 , repeat : Infinity } }
className = "absolute -inset-1 bg-blue-400/20 rounded-full"
> < / motion.div >
) }
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "flex-1" >
< div className = "flex items-center justify-between" >
2025-07-22 16:14:11 +05:30
< span
2026-04-07 15:12:01 +05:30
className = { ` text-sm font-medium ${
item . status === "complete"
2025-07-22 16:14:11 +05:30
? "text-green-300"
: item . status === "active"
2025-07-23 19:52:24 +05:30
? "text-blue-300"
: "text-gray-400"
2026-04-07 15:12:01 +05:30
} ` }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
{ item . step }
< / span >
2025-07-22 16:14:11 +05:30
{ item . status === "complete" && (
2025-07-11 16:54:37 +05:30
< CheckCircle className = "w-4 h-4 text-green-400" / >
) }
2025-07-22 16:14:11 +05:30
{ item . status === "active" && (
2025-07-11 16:54:37 +05:30
< motion.div
animate = { { rotate : 360 } }
2025-07-22 16:14:11 +05:30
transition = { {
duration : 2 ,
repeat : Infinity ,
ease : "linear" ,
} }
2025-07-11 16:54:37 +05:30
>
< Loader className = "w-4 h-4 text-blue-400" / >
< / motion.div >
) }
< / div >
2025-07-22 16:14:11 +05:30
< div
2026-04-07 15:12:01 +05:30
className = { ` w-full h-1 rounded-full mt-2 ${
item . status === "complete"
2025-07-22 16:14:11 +05:30
? "bg-green-500/30"
: item . status === "active"
2025-07-23 19:52:24 +05:30
? "bg-blue-500/30"
: "bg-gray-500/30"
2026-04-07 15:12:01 +05:30
} ` }
2025-07-22 16:14:11 +05:30
>
{ item . status === "active" && (
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { width : 0 } }
2025-07-22 16:14:11 +05:30
animate = { { width : "75%" } }
transition = { {
duration : 3 ,
repeat : Infinity ,
} }
2025-07-11 16:54:37 +05:30
className = "h-full bg-blue-400 rounded-full"
> < / motion.div >
) }
2025-07-22 16:14:11 +05:30
{ item . status === "complete" && (
2025-07-11 16:54:37 +05:30
< div className = "h-full w-full bg-green-400 rounded-full" > < / div >
) }
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ i < 3 && (
< div className = "absolute left-5 top-12 w-0.5 h-4 bg-gray-600" > < / div >
) }
< / motion.div >
) ) }
< / div >
< / motion.div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Automation Metrics */ }
< motion.div
initial = { { opacity : 0 , y : 20 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 2.2 } }
className = "bg-black/50 rounded-lg p-4 border border-gray-700 mb-6"
>
< div className = "flex items-center justify-between mb-3" >
< div className = "flex items-center gap-2" >
< BarChart3 className = "w-4 h-4 text-purple-400" / >
2025-07-22 16:14:11 +05:30
< span className = "text-purple-400 text-xs font-mono" >
Automation Metrics
< / span >
2025-07-11 16:54:37 +05:30
< / div >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-green-500/20 text-green-300 border-green-500/30 text-xs"
>
2025-07-11 16:54:37 +05:30
Optimized
< / Badge >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Performance Metrics */ }
< div className = "space-y-2" >
< motion.div
initial = { { opacity : 0 , width : 0 } }
2025-07-22 16:14:11 +05:30
animate = { { opacity : 1 , width : "92%" } }
2025-07-11 16:54:37 +05:30
transition = { { duration : 1 , delay : 2.4 } }
className = "flex items-center justify-between"
>
< div className = "flex items-center gap-2" >
< div className = "w-2 h-2 bg-green-400 rounded-full" > < / div >
2025-07-22 16:14:11 +05:30
< span className = "text-green-300 text-xs" >
Efficiency
< / span >
2025-07-11 16:54:37 +05:30
< / div >
2025-07-22 16:14:11 +05:30
< span className = "text-green-300 text-xs font-mono" >
92 %
< / span >
2025-07-11 16:54:37 +05:30
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , width : 0 } }
2025-07-22 16:14:11 +05:30
animate = { { opacity : 1 , width : "98%" } }
2025-07-11 16:54:37 +05:30
transition = { { duration : 1 , delay : 2.6 } }
className = "flex items-center justify-between"
>
< div className = "flex items-center gap-2" >
< div className = "w-2 h-2 bg-blue-400 rounded-full" > < / div >
2025-07-22 16:14:11 +05:30
< span className = "text-blue-300 text-xs" >
Accuracy
< / span >
2025-07-11 16:54:37 +05:30
< / div >
2025-07-22 16:14:11 +05:30
< span className = "text-blue-300 text-xs font-mono" >
98 %
< / span >
2025-07-11 16:54:37 +05:30
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , width : 0 } }
2025-07-22 16:14:11 +05:30
animate = { { opacity : 1 , width : "87%" } }
2025-07-11 16:54:37 +05:30
transition = { { duration : 1 , delay : 2.8 } }
className = "flex items-center justify-between"
>
< div className = "flex items-center gap-2" >
< div className = "w-2 h-2 bg-purple-400 rounded-full" > < / div >
2025-07-22 16:14:11 +05:30
< span className = "text-purple-300 text-xs" >
Cost Reduction
< / span >
2025-07-11 16:54:37 +05:30
< / div >
2025-07-22 16:14:11 +05:30
< span className = "text-purple-300 text-xs font-mono" >
87 %
< / span >
2025-07-11 16:54:37 +05:30
< / motion.div >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Efficiency & Cost Benefits */ }
< motion.div
initial = { { opacity : 0 , y : 10 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 , delay : 3.0 } }
className = "grid grid-cols-2 gap-3"
>
< div className = "p-3 bg-gradient-to-br from-green-500/20 to-emerald-500/20 rounded-lg border border-green-500/30" >
2025-07-22 16:14:11 +05:30
< div className = "text-green-400 text-lg font-bold" >
70 %
< / div >
2025-07-11 16:54:37 +05:30
< div className = "text-white text-xs" > Time Saved < / div >
< / div >
< div className = "p-3 bg-gradient-to-br from-blue-500/20 to-cyan-500/20 rounded-lg border border-blue-500/30" >
< div className = "text-blue-400 text-lg font-bold" > 99 % < / div >
< div className = "text-white text-xs" > Error Reduction < / div >
< / div >
< / motion.div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Floating Automation Elements */ }
< motion.div
initial = { { opacity : 0 , scale : 0.8 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.8 , delay : 3.2 } }
className = "absolute -bottom-6 -left-6 transform -rotate-12"
>
< div className = "w-14 h-14 bg-gradient-to-br from-orange-500/20 to-red-500/20 rounded-full flex items-center justify-center border border-orange-500/30" >
< Bot className = "w-6 h-6 text-orange-400" / >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Automation Status Indicator */ }
< motion.div
initial = { { opacity : 0 } }
animate = { { opacity : 1 } }
transition = { { duration : 0.8 , delay : 3.4 } }
className = "absolute -top-8 -right-8 space-y-2"
>
< div className = "flex items-center gap-2 text-green-400 text-sm" >
< Zap className = "w-4 h-4" / >
< span > Active < / span >
< / div >
< div className = "flex gap-1" >
< motion.div
animate = { { opacity : [ 0.3 , 1 , 0.3 ] } }
transition = { { duration : 2 , repeat : Infinity } }
className = "w-2 h-2 bg-green-400 rounded-full"
> < / motion.div >
< motion.div
animate = { { opacity : [ 0.3 , 1 , 0.3 ] } }
transition = { { duration : 2 , repeat : Infinity , delay : 0.5 } }
className = "w-2 h-2 bg-blue-400 rounded-full"
> < / motion.div >
< motion.div
animate = { { opacity : [ 0.3 , 1 , 0.3 ] } }
transition = { { duration : 2 , repeat : Infinity , delay : 1 } }
className = "w-2 h-2 bg-purple-400 rounded-full"
> < / motion.div >
< / div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* BPA Status Badge */ }
< motion.div
initial = { { opacity : 0 , scale : 0 } }
animate = { { opacity : 1 , scale : 1 } }
transition = { { duration : 0.6 , delay : 3.6 } }
className = "absolute top-1/4 left-1/4 transform -translate-x-1/2 -translate-y-1/2"
>
< div className = "w-16 h-16 bg-accent/10 backdrop-blur-sm rounded-full flex items-center justify-center shadow-xl" >
< div className = "text-center" >
< div className = "text-accent text-sm font-bold" > BPA < / div >
< div className = "text-white text-xs" > Live < / div >
< / div >
< / div >
< / motion.div >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Automation Features */ }
< motion.div
initial = { { opacity : 0 , y : 30 } }
animate = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 3.8 } }
className = "flex justify-center gap-4 flex-wrap mt-8"
>
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-blue-500/20 text-blue-300 border-blue-500/30"
>
2025-07-11 16:54:37 +05:30
< Cog className = "w-3 h-3 mr-1" / >
Automated
< / Badge >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-green-500/20 text-green-300 border-green-500/30"
>
2025-07-11 16:54:37 +05:30
< Bot className = "w-3 h-3 mr-1" / >
Intelligent
< / Badge >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "bg-purple-500/20 text-purple-300 border-purple-500/30"
>
2025-07-11 16:54:37 +05:30
< TrendingUp className = "w-3 h-3 mr-1" / >
Efficient
< / Badge >
< / motion.div >
< / div >
< / motion.div >
< / div >
< / div >
< / section >
) ;
} ;
// The Challenge We Solve
const BusinessProcessAutomationChallenge = ( ) = > {
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "max-w-6xl mx-auto" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-16"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-8" >
Eliminating Inefficiency : The Path to Operational Excellence
< / h2 >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "grid md:grid-cols-2 gap-12 items-center" >
{ /* Problem */ }
< motion.div
initial = { { opacity : 0 , x : - 30 } }
whileInView = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
>
< Card className = "bg-red-500/5 border-red-500/20 p-8 rounded-2xl" >
< CardContent className = "p-0" >
< div className = "flex items-center gap-4 mb-6" >
< div className = "w-12 h-12 bg-red-500/20 rounded-xl flex items-center justify-center" >
< AlertTriangle className = "w-6 h-6 text-red-400" / >
< / div >
2025-07-22 16:14:11 +05:30
< h3 className = "text-2xl font-semibold text-foreground" >
The Problem
< / h3 >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "space-y-4 text-muted-foreground" >
2025-07-22 16:14:11 +05:30
< p >
Manual , repetitive tasks often lead to human errors , slow
down operations , increase costs , and prevent employees
from focusing on higher - value activities .
< / p >
2025-07-11 16:54:37 +05:30
< ul className = "space-y-2" >
< li className = "flex items-start gap-2" >
< X className = "w-4 h-4 text-red-400 mt-1 flex-shrink-0" / >
< span > High error rates in manual processes < / span >
< / li >
< li className = "flex items-start gap-2" >
< X className = "w-4 h-4 text-red-400 mt-1 flex-shrink-0" / >
< span > Slow processing times and bottlenecks < / span >
< / li >
< li className = "flex items-start gap-2" >
< X className = "w-4 h-4 text-red-400 mt-1 flex-shrink-0" / >
< span > Expensive operational overhead < / span >
< / li >
< li className = "flex items-start gap-2" >
< X className = "w-4 h-4 text-red-400 mt-1 flex-shrink-0" / >
< span > Employees trapped in repetitive tasks < / span >
< / li >
< / ul >
< / div >
< / CardContent >
< / Card >
< / motion.div >
{ /* Solution */ }
< motion.div
initial = { { opacity : 0 , x : 30 } }
whileInView = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
>
< Card className = "bg-green-500/5 border-green-500/20 p-8 rounded-2xl" >
< CardContent className = "p-0" >
< div className = "flex items-center gap-4 mb-6" >
< div className = "w-12 h-12 bg-green-500/20 rounded-xl flex items-center justify-center" >
< CheckCircle className = "w-6 h-6 text-green-400" / >
< / div >
2025-07-22 16:14:11 +05:30
< h3 className = "text-2xl font-semibold text-foreground" >
Our Solution
< / h3 >
2025-07-11 16:54:37 +05:30
< / div >
< div className = "space-y-4 text-muted-foreground" >
2025-07-22 16:14:11 +05:30
< p >
WDI helps businesses identify , analyze , and automate their
critical processes . We leverage advanced technologies like
RPA , AI , and custom software to create intelligent
automation solutions that drive efficiency , accuracy , and
significant cost savings .
< / p >
2025-07-11 16:54:37 +05:30
< ul className = "space-y-2" >
< li className = "flex items-start gap-2" >
< CheckCircle className = "w-4 h-4 text-green-400 mt-1 flex-shrink-0" / >
< span > Intelligent automation with RPA and AI < / span >
< / li >
< li className = "flex items-start gap-2" >
< CheckCircle className = "w-4 h-4 text-green-400 mt-1 flex-shrink-0" / >
< span > Dramatic reduction in processing times < / span >
< / li >
< li className = "flex items-start gap-2" >
< CheckCircle className = "w-4 h-4 text-green-400 mt-1 flex-shrink-0" / >
< span > Significant cost savings and ROI < / span >
< / li >
< li className = "flex items-start gap-2" >
< CheckCircle className = "w-4 h-4 text-green-400 mt-1 flex-shrink-0" / >
< span > Employees freed for strategic work < / span >
< / li >
< / ul >
< / div >
< / CardContent >
< / Card >
< / motion.div >
< / div >
< / div >
< / div >
< / section >
) ;
} ;
// What's Included in This Solution
const BusinessProcessAutomationIncludes = ( ) = > {
const includes = [
{
icon : Search ,
title : "Process Discovery & Analysis" ,
2025-07-22 16:14:11 +05:30
description : "Identifying bottlenecks and opportunities for automation." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Target ,
title : "Automation Strategy & Roadmapping" ,
2025-07-22 16:14:11 +05:30
description : "Defining the scope, technology, and implementation plan." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Bot ,
title : "RPA Implementation" ,
2025-07-22 16:14:11 +05:30
description : "Deploying Robotic Process Automation for repetitive tasks." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Code ,
title : "Custom Workflow Development" ,
2025-07-22 16:14:11 +05:30
description :
"Building bespoke software to automate complex, unique processes." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Brain ,
title : "AI/ML Integration" ,
2025-07-22 16:14:11 +05:30
description :
"Incorporating intelligence for decision-making and data processing." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Network ,
title : "System Integration" ,
2025-07-22 16:14:11 +05:30
description : "Connecting disparate systems for seamless data flow." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : BarChart3 ,
title : "Monitoring & Optimization" ,
2025-07-22 16:14:11 +05:30
description :
"Ensuring automated processes run smoothly and continuously improving them." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Our Business Process Automation Services
< / h2 >
2026-04-07 15:12:01 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
End ‑ to ‑ end automation that streamlines workflows , cuts manual
errors , and accelerates digital product development and daily
operations .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ includes . slice ( 0 , 6 ) . map ( ( item , index ) = > {
const IconComponent = item . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-gray-900/50 backdrop-blur-md border-gray-800 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-white mb-4" >
{ item . title }
< / h3 >
< p className = "text-gray-300 leading-relaxed" >
{ item . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
{ /* Seventh item centered */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "flex justify-center mt-8"
>
< motion.div
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.5 , delay : 0.6 } }
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group max-w-sm"
>
< Card className = "bg-gray-900/50 backdrop-blur-md border-gray-800 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< BarChart3 className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-white mb-4" >
{ includes [ 6 ] . title }
< / h3 >
< p className = "text-gray-300 leading-relaxed" >
{ includes [ 6 ] . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
< / motion.div >
< / div >
< / section >
) ;
} ;
// Key Benefits & Outcomes
const BusinessProcessAutomationBenefits = ( ) = > {
const benefits = [
{
icon : Gauge ,
title : "Increased Efficiency" ,
2025-07-22 16:14:11 +05:30
description : "Accelerate workflows and reduce task completion times." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : DollarSign ,
title : "Significant Cost Savings" ,
2025-07-22 16:14:11 +05:30
description : "Lower operational expenses by minimizing manual labor." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Target ,
title : "Improved Accuracy" ,
2025-07-22 16:14:11 +05:30
description : "Eliminate human errors, leading to higher data quality." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Shield ,
title : "Enhanced Compliance" ,
2025-07-22 16:14:11 +05:30
description : "Ensure consistent adherence to regulations and policies." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : TrendingUp ,
title : "Boosted Productivity" ,
2025-07-22 16:14:11 +05:30
description : "Free up employees for strategic and creative work." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
The Tangible Impact of Intelligent Automation
< / h2 >
2026-04-07 15:12:01 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
Intelligent automation drives faster , error ‑ free workflows and lower
costs , freeing teams to focus on innovation and accelerating digital
product development .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ benefits . slice ( 0 , 3 ) . map ( ( benefit , index ) = > {
const IconComponent = benefit . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ benefit . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ benefit . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
{ /* Second row with remaining benefits */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 gap-8 max-w-2xl mx-auto mt-8"
>
{ benefits . slice ( 3 ) . map ( ( benefit , index ) = > {
const IconComponent = benefit . icon ;
return (
< motion.div
key = { index + 3 }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.5 , delay : ( index + 3 ) * 0.1 } }
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ benefit . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ benefit . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// Our Process for Business Process Automation
const BusinessProcessAutomationProcess = ( ) = > {
const steps = [
{
title : "Assess & Identify" ,
2025-07-22 16:14:11 +05:30
description :
"Analyze existing processes to pinpoint automation opportunities." ,
icon : Search ,
2025-07-11 16:54:37 +05:30
} ,
{
2025-07-22 16:14:11 +05:30
title : "Design & Plan" ,
description :
"Develop the automation strategy, define scope, and select technologies." ,
icon : Target ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Develop & Configure" ,
2025-07-22 16:14:11 +05:30
description :
"Build and configure automation solutions (RPA bots, custom software)." ,
icon : Code ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Test & Refine" ,
2025-07-22 16:14:11 +05:30
description :
"Rigorously test automated workflows to ensure accuracy and robustness." ,
icon : Shield ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Deploy & Implement" ,
2025-07-22 16:14:11 +05:30
description :
"Integrate and launch automated processes within your systems." ,
icon : Rocket ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Monitor & Optimize" ,
2025-07-22 16:14:11 +05:30
description :
"Continuously track performance and refine processes for maximum efficiency." ,
icon : BarChart3 ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Our Automation Journey : From Concept to Efficiency
< / h2 >
2026-04-07 15:12:01 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
From assessment to deployment , the automation journey turns manual
tasks into efficient workflows that support faster digital product
development .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
< div className = "relative" >
{ /* Timeline line */ }
< div className = "absolute left-1/2 transform -translate-x-1/2 h-full w-0.5 bg-gradient-to-b from-accent via-accent/50 to-transparent hidden lg:block" > < / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "space-y-16" >
{ steps . map ( ( step , index ) = > {
const IconComponent = step . icon ;
const isEven = index % 2 === 0 ;
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
return (
< motion.div
key = { index }
initial = { { opacity : 0 , x : isEven ? - 50 : 50 } }
whileInView = { { opacity : 1 , x : 0 } }
transition = { { duration : 0.8 , delay : index * 0.2 } }
viewport = { { once : true } }
2026-04-07 15:12:01 +05:30
className = { ` flex items-center ${
isEven ? "lg:flex-row" : "lg:flex-row-reverse"
} flex - col lg :gap - 16 gap - 8 ` }
2025-07-11 16:54:37 +05:30
>
2025-07-22 16:14:11 +05:30
< div
2026-04-07 15:12:01 +05:30
className = { ` flex-1 ${
isEven ? "lg:text-right" : "lg:text-left"
} text - center lg :text - left ` }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
< div className = "bg-gray-900/50 backdrop-blur-md rounded-2xl border border-gray-800 p-8 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl" >
< div className = "flex items-center gap-4 mb-4 justify-center lg:justify-start" >
< div className = "w-12 h-12 bg-accent/20 rounded-xl flex items-center justify-center" >
< IconComponent className = "w-6 h-6 text-accent" / >
< / div >
2025-07-22 16:14:11 +05:30
< div className = "text-2xl font-bold text-accent" >
0 { index + 1 }
< / div >
2025-07-11 16:54:37 +05:30
< / div >
< h3 className = "text-2xl font-semibold text-white mb-4" >
{ step . title }
< / h3 >
< p className = "text-gray-300 leading-relaxed" >
{ step . description }
< / p >
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Timeline dot */ }
< div className = "w-4 h-4 bg-accent rounded-full border-4 border-black z-10 hidden lg:block" > < / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "flex-1 hidden lg:block" > < / div >
< / motion.div >
) ;
} ) }
< / div >
< / div >
< / div >
< / section >
) ;
} ;
// Who Benefits from This Solution
const BusinessProcessAutomationAudience = ( ) = > {
const audiences = [
{
icon : Factory ,
title : "High-Volume Task Businesses" ,
2025-07-22 16:14:11 +05:30
description : "With high volumes of repetitive, rule-based tasks." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Target ,
title : "Error-Prone Operations" ,
2025-07-22 16:14:11 +05:30
description :
"Struggling with data entry errors or slow processing times." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : DollarSign ,
title : "Cost-Conscious Organizations" ,
2025-07-22 16:14:11 +05:30
description :
"Seeking to reduce operational costs and reallocate resources." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Users ,
title : "Key Departments" ,
2025-07-22 16:14:11 +05:30
description : "HR, Finance, Operations, or Customer Service departments." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Building ,
title : "Digital Transformation Enterprises" ,
2025-07-22 16:14:11 +05:30
description :
"Aiming for digital transformation and greater operational agility." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6" >
Ideal For . . .
< / h2 >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ audiences . slice ( 0 , 3 ) . map ( ( audience , index ) = > {
const IconComponent = audience . icon ;
return (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ audience . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ audience . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
{ /* Second row with remaining audiences */ }
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 gap-8 max-w-2xl mx-auto mt-8"
>
{ audiences . slice ( 3 ) . map ( ( audience , index ) = > {
const IconComponent = audience . icon ;
return (
< motion.div
key = { index + 3 }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.5 , delay : ( index + 3 ) * 0.1 } }
viewport = { { once : true } }
whileHover = { { y : - 5 } }
className = "group"
>
< Card className = "bg-card/20 backdrop-blur-md border-white/10 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl h-full" >
< CardContent className = "p-8 text-center" >
< div className = "w-16 h-16 bg-accent/20 rounded-2xl flex items-center justify-center mx-auto mb-6" >
< IconComponent className = "w-8 h-8 text-accent" / >
< / div >
< h3 className = "text-xl font-semibold text-foreground mb-4" >
{ audience . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ audience . description }
< / p >
< / CardContent >
< / Card >
< / motion.div >
) ;
} ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// Case Studies
const BusinessProcessAutomationCaseStudies = ( ) = > {
const caseStudies = [
{
title : "Automated Invoice Processing" ,
client : "Logistics Company" ,
2025-07-22 16:14:11 +05:30
description :
"Reduced invoice processing time by 70% for a logistics company, eliminating manual errors and improving cash flow management through intelligent document processing and automated approval workflows." ,
image :
"https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=400&h=300&fit=crop&auto=format" ,
2025-07-11 16:54:37 +05:30
results : "70% time reduction, zero errors" ,
engagement : "Invoice automation success" ,
2025-07-22 16:14:11 +05:30
gradient : "from-blue-500/20 to-cyan-500/20" ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "Customer Onboarding Workflow Automation" ,
client : "Financial Services Firm" ,
2025-07-22 16:14:11 +05:30
description :
"Streamlined onboarding for a financial firm, cutting the process duration by 50% while improving compliance and customer satisfaction through automated document verification and KYC processes." ,
image :
"https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=400&h=300&fit=crop&auto=format" ,
2025-07-11 16:54:37 +05:30
results : "50% process duration reduction" ,
engagement : "Customer onboarding optimization" ,
2025-07-22 16:14:11 +05:30
gradient : "from-green-500/20 to-emerald-500/20" ,
2025-07-11 16:54:37 +05:30
} ,
{
title : "HR Process Automation Suite" ,
client : "Manufacturing Enterprise" ,
2025-07-22 16:14:11 +05:30
description :
"Automated employee onboarding, payroll processing, and compliance reporting for a manufacturing company, reducing HR administrative overhead by 60% and improving employee experience significantly." ,
image :
"https://images.unsplash.com/photo-1565514158740-3011dbf5b2ed?w=400&h=300&fit=crop&auto=format" ,
2025-07-11 16:54:37 +05:30
results : "60% admin overhead reduction" ,
engagement : "HR transformation success" ,
2025-07-22 16:14:11 +05:30
gradient : "from-purple-500/20 to-pink-500/20" ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-8" >
Operations Transformed Through Automation
< / h2 >
2026-04-07 15:12:01 +05:30
< p className = "mt-4 text-gray-400 max-w-2xl mx-auto" >
Automation transforms operations by replacing repetitive tasks with
fast , reliable workflows that reduce errors and accelerate digital
product development .
< / p >
2025-07-11 16:54:37 +05:30
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{ caseStudies . map ( ( study , index ) = > (
< motion.div
key = { index }
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
2025-07-29 14:36:54 +05:30
transition = { { duration : 0.5 , delay : index * 0.01 } }
2025-07-11 16:54:37 +05:30
viewport = { { once : true } }
whileHover = { { y : - 8 , scale : 1.02 } }
className = "group cursor-pointer"
>
< Card className = "bg-gray-900/50 backdrop-blur-md border-gray-800 hover:border-accent/30 transition-all duration-300 shadow-lg hover:shadow-xl rounded-2xl overflow-hidden h-full" >
< CardContent className = "p-0 flex flex-col h-full" >
< div className = "p-8 pb-6" >
< div className = "flex items-start gap-4 mb-6" >
< div className = "w-12 h-12 bg-accent/20 rounded-xl flex items-center justify-center" >
< Cog className = "w-6 h-6 text-accent" / >
< / div >
< div className = "flex-1" >
< div className = "text-xs text-gray-400 mb-2 uppercase tracking-wider" >
{ study . client }
< / div >
2025-07-22 16:14:11 +05:30
< Badge
variant = "secondary"
className = "text-xs bg-accent/20 text-accent border-accent/30"
>
2025-07-11 16:54:37 +05:30
{ study . results }
< / Badge >
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< h3 className = "text-xl font-semibold text-white mb-4 leading-tight" >
{ study . title }
< / h3 >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "px-8 pb-6 flex-1" >
2025-07-22 16:14:11 +05:30
< div
className = { ` relative rounded-xl overflow-hidden bg-gradient-to-br ${ study . gradient } p-4 border border-white/10 ` }
>
2025-07-11 16:54:37 +05:30
< ImageWithFallback
src = { study . image }
alt = { study . title }
className = "w-full h-48 object-cover rounded-lg shadow-lg"
/ >
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "px-8 pb-6" >
< p className = "text-gray-300 text-sm leading-relaxed mb-4" >
{ study . description }
< / p >
< div className = "flex gap-4 text-xs text-gray-400" >
< div className = "flex items-center gap-1" >
< CheckCircle className = "w-3 h-3" / >
{ study . engagement }
< / div >
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "p-8 pt-0 mt-auto" >
2025-07-22 16:14:11 +05:30
< Button
variant = "ghost"
2025-07-11 16:54:37 +05:30
size = "sm"
className = "w-full justify-between text-accent hover:text-accent hover:bg-accent/10 group-hover:translate-x-1 transition-all duration-300 h-auto py-3"
>
2025-07-22 16:14:11 +05:30
< span className = "text-sm font-medium" >
VIEW FULL CASE STUDY
< / span >
2025-07-11 16:54:37 +05:30
< ArrowRight className = "w-4 h-4" / >
< / Button >
< / div >
< / CardContent >
< / Card >
< / motion.div >
) ) }
< / motion.div >
< / div >
< / section >
) ;
} ;
// Mid-Page Lead Capture CTA
const BusinessProcessAutomationInlineCTA = ( ) = > {
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
2025-07-11 16:54:37 +05:30
return (
< section className = "py-20" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 50 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center max-w-4xl mx-auto"
>
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "space-y-8"
>
< div className = "inline-block p-[2px] rounded-full bg-gradient-to-r from-accent via-blue-500 to-green-500" >
< div className = "bg-background rounded-full px-6 py-3 flex items-center gap-2" >
< Cog className = "w-5 h-5 text-foreground" / >
2025-07-22 16:14:11 +05:30
< span className = "text-foreground text-base font-medium" >
Process Automation
< / span >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground leading-tight" >
Ready to Automate Your Business for { " " }
< span className = "text-accent" > Peak Performance ? < / span >
< / h2 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-xl text-muted-foreground leading-relaxed max-w-2xl mx-auto" >
2025-07-22 16:14:11 +05:30
Discover how intelligent automation can revolutionize your
operations .
2025-07-11 16:54:37 +05:30
< / p >
2025-07-22 16:14:11 +05:30
< ShimmerButton
className = "text-xl px-10 py-5 rounded-2xl shadow-lg hover:shadow-xl"
2025-09-23 20:13:31 +05:30
onClick = { ( ) = > navigate ( "/start-a-project" ) }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-3" >
< Search className = "w-6 h-6 flex-shrink-0" / >
< span > Get Your Automation Assessment < / span >
< / div >
< / ShimmerButton >
< / motion.div >
< / motion.div >
< / div >
< / section >
) ;
} ;
// FAQs
const BusinessProcessAutomationFAQs = ( ) = > {
const faqs = [
{
2026-04-07 15:12:01 +05:30
question : "What is Business Process Automation (BPA)?" ,
2025-07-22 16:14:11 +05:30
answer :
2026-04-07 15:12:01 +05:30
"Business process automation uses software and intelligent workflows to handle repetitive tasks such as approvals, data entry, and notifications without manual intervention. It speeds up operations, reduces errors, and frees teams to focus on higher-value work." ,
2025-07-11 16:54:37 +05:30
} ,
{
2026-04-07 15:12:01 +05:30
question :
"How does intelligent automation improve day-to-day operations?" ,
2025-07-22 16:14:11 +05:30
answer :
2026-04-07 15:12:01 +05:30
"Intelligent automation combines rules-based automation with AI and data-driven logic to make workflows smarter and more adaptive. It can auto-route requests, prioritize alerts, and trigger AI-powered features based on real-time patterns, improving response times and decision-making." ,
2025-07-11 16:54:37 +05:30
} ,
{
2026-04-07 15:12:01 +05:30
question : "Can automation integrate with our existing apps and systems?" ,
2025-07-22 16:14:11 +05:30
answer :
2026-04-07 15:12:01 +05:30
"Yes. Automation solutions plug into your current tools via APIs, including CRM, ERP, email, and custom software. We also design workflows that connect smoothly with AI-powered mobile and web applications, so your teams can trigger and monitor automated tasks from any device." ,
2025-07-11 16:54:37 +05:30
} ,
{
2026-04-07 15:12:01 +05:30
question : "What if my team lacks in-house AI or iOS expertise?" ,
2025-07-22 16:14:11 +05:30
answer :
2026-04-07 15:12:01 +05:30
"If you don’ t have internal AI or iOS skills, you can work with an AI app development company that handles the full stack—from concept and AI-powered design to deployment and maintenance. We act as your end-to-end partner, so your business can adopt automation and AI without needing a deep-tech team." ,
2025-07-22 16:14:11 +05:30
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< section className = "py-32 bg-black" >
< div className = "container mx-auto px-6 lg:px-8" >
< motion.div
initial = { { opacity : 0 , y : 30 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center mb-20"
>
< h2 className = "text-4xl lg:text-5xl font-semibold text-white mb-6" >
Frequently Asked Questions
< / h2 >
< / motion.div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.2 } }
viewport = { { once : true } }
className = "max-w-4xl mx-auto"
>
< Accordion type = "single" collapsible className = "space-y-8" >
{ faqs . map ( ( faq , index ) = > (
2025-07-22 16:14:11 +05:30
< AccordionItem
key = { index }
value = { ` item- ${ index } ` }
2025-07-11 16:54:37 +05:30
className = "bg-gray-900/50 backdrop-blur-md rounded-2xl border border-gray-800 px-10 shadow-lg"
>
< AccordionTrigger className = "text-left hover:no-underline py-10 text-xl" >
2025-07-22 16:14:11 +05:30
< span className = "font-semibold text-white" >
{ faq . question }
< / span >
2025-07-11 16:54:37 +05:30
< / AccordionTrigger >
< AccordionContent className = "text-gray-300 pb-10 text-lg leading-relaxed" >
{ faq . answer }
< / AccordionContent >
< / AccordionItem >
) ) }
< / Accordion >
< / motion.div >
< / div >
< / section >
) ;
} ;
// Final CTA Section
const BusinessProcessAutomationFinalCTA = ( ) = > {
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
2025-07-11 16:54:37 +05:30
return (
< section className = "py-20 relative overflow-hidden" >
< div className = "container mx-auto px-6 lg:px-8 relative z-10" >
< motion.div
initial = { { opacity : 0 , y : 50 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 } }
viewport = { { once : true } }
className = "text-center max-w-4xl mx-auto"
>
< motion.div
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.6 } }
viewport = { { once : true } }
className = "mb-8"
>
< div className = "inline-block p-[2px] rounded-full bg-gradient-to-r from-accent via-blue-500 to-green-500" >
< div className = "bg-background rounded-full px-6 py-3 flex items-center gap-2" >
< Cog className = "w-5 h-5 text-foreground" / >
2025-07-22 16:14:11 +05:30
< span className = "text-foreground text-base font-medium" >
Smart Automation
< / span >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
< / motion.div >
< h2 className = "text-4xl lg:text-5xl font-semibold text-foreground mb-6 leading-tight" >
Automate Smart , Grow Faster { " " }
< span className = "text-accent" > with WDI < / span >
< / h2 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< motion.p
initial = { { opacity : 0 , y : 20 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.3 } }
viewport = { { once : true } }
className = "text-xl text-muted-foreground mb-12 max-w-2xl mx-auto leading-relaxed"
>
2025-07-22 16:14:11 +05:30
Let WDI empower your business with intelligent automation solutions
that drive efficiency , reduce costs , and free up your team for what
truly matters .
2025-07-11 16:54:37 +05:30
< / motion.p >
< motion.div
initial = { { opacity : 0 , y : 40 } }
whileInView = { { opacity : 1 , y : 0 } }
transition = { { duration : 0.8 , delay : 0.4 } }
viewport = { { once : true } }
className = "space-y-8"
>
2025-07-22 16:14:11 +05:30
< ShimmerButton
className = "px-12 py-6 text-xl rounded-2xl shadow-2xl hover:shadow-accent/25"
2025-09-23 20:13:31 +05:30
onClick = { ( ) = > navigate ( "/start-a-project" ) }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
< div className = "inline-flex items-center gap-3" >
< Calendar className = "w-6 h-6 flex-shrink-0" / >
< span > Schedule a Free Consultation < / span >
< / div >
< / ShimmerButton >
< p className = "text-muted-foreground text-sm" >
2025-07-22 16:14:11 +05:30
Discovery • Strategy • Implementation • Testing • Deployment •
Optimization
2025-07-11 16:54:37 +05:30
< / p >
< / motion.div >
< / motion.div >
< / div >
{ /* Background Decorative Elements */ }
< div className = "absolute top-0 left-0 w-full h-full pointer-events-none overflow-hidden" >
< div className = "absolute top-20 left-20 w-60 h-60 bg-accent/5 rounded-full blur-3xl" > < / div >
< div className = "absolute bottom-20 right-20 w-60 h-60 bg-blue-500/5 rounded-full blur-3xl" > < / div >
< div className = "absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-80 h-80 bg-green-500/3 rounded-full blur-3xl" > < / div >
< / div >
< / section >
) ;
} ;
// Main Business Process Automation Page
export const BusinessProcessAutomation = ( ) = > {
return (
< div className = "dark min-h-screen" >
2025-09-23 20:13:31 +05:30
{ /* <Navigation /> */ }
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Hero Section */ }
< section className = "bg-black" >
< BusinessProcessAutomationHero / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Challenge */ }
< section className = "bg-background" >
< BusinessProcessAutomationChallenge / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* What's Included */ }
< section className = "bg-card" >
< BusinessProcessAutomationIncludes / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Benefits */ }
< section className = "bg-background" >
< BusinessProcessAutomationBenefits / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Process */ }
< section className = "bg-card" >
< BusinessProcessAutomationProcess / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Target Audience */ }
< section className = "bg-background" >
< BusinessProcessAutomationAudience / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Case Studies */ }
< section className = "bg-card" >
< BusinessProcessAutomationCaseStudies / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Mid-Page CTA */ }
< section className = "bg-background" >
< BusinessProcessAutomationInlineCTA / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* FAQs */ }
< section className = "bg-card" >
< BusinessProcessAutomationFAQs / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Final CTA */ }
< section className = "bg-background" >
< BusinessProcessAutomationFinalCTA / >
< / section >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* Footer */ }
2026-04-07 15:12:01 +05:30
< section className = "bg-card" > { /* <Footer /> */ } < / section >
2025-07-11 16:54:37 +05:30
< / div >
) ;
2025-07-22 16:14:11 +05:30
} ;