2025-07-11 16:54:37 +05:30
import React from "react" ;
import { Navigation } from "../components/Navigation" ;
import { Footer } from "../components/Footer" ;
import { Button } from "../components/ui/button" ;
import { Badge } from "../components/ui/badge" ;
import { Card , CardContent } from "../components/ui/card" ;
2025-07-22 16:14:11 +05:30
import {
ArrowRight ,
DollarSign ,
Clock ,
Users ,
Target ,
Zap ,
Shield ,
CheckCircle ,
Star ,
} from "lucide-react" ;
2025-09-23 20:13:31 +05:30
import { useNavigate } from "react-router-dom" ;
2025-07-23 18:53:54 +05:30
import { Helmet } from "react-helmet-async" ;
2025-08-08 19:23:45 +05:30
import { EngagementModelsVector } from "@/components/vectors" ;
import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner" ;
2025-07-11 16:54:37 +05:30
export const EngagementModels = ( ) = > {
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
2025-07-11 16:54:37 +05:30
const models = [
{
icon : DollarSign ,
title : "Fixed Price Model" ,
2025-07-22 16:14:11 +05:30
description :
"Ideal for projects with well-defined requirements, scope, and deliverables. We agree on a fixed price and timeline upfront, ensuring budget predictability." ,
bestFor : [
"MVPs" ,
"Specific feature development" ,
"Clear scope projects" ,
"Smaller applications" ,
] ,
benefits : [
"Predictable costs" ,
"Clearly defined deliverables" ,
"Minimal financial risk" ,
] ,
color : "from-blue-400 to-blue-600" ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Clock ,
title : "Time & Material (T&M) Model" ,
2025-07-22 16:14:11 +05:30
description :
"Perfect for projects with evolving requirements, dynamic scope, or long-term development. You pay for the actual time and resources spent, offering maximum flexibility." ,
bestFor : [
"Complex projects" ,
"Agile development" ,
"Ongoing support" ,
"R&D initiatives" ,
] ,
benefits : [
"High flexibility for changes" ,
"Transparent billing" ,
"Adaptability to market shifts" ,
"Continuous refinement" ,
] ,
color : "from-green-400 to-green-600" ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Users ,
title : "Dedicated Team Model" ,
2025-07-22 16:14:11 +05:30
description :
"Gain a fully integrated team of WDI professionals working exclusively on your project. You have direct control over the team, processes, and project direction, similar to an in-house extension." ,
bestFor : [
"Long-term projects" ,
"Ongoing product development" ,
"Scaling existing teams" ,
"Building robust, complex solutions" ,
] ,
benefits : [
"Full control" ,
"Seamless integration" ,
"Undivided attention" ,
"Access to diverse skill sets" ,
"Cost-efficiency" ,
] ,
color : "from-[#E5195E] to-[#FF6B9D]" ,
} ,
2025-07-11 16:54:37 +05:30
] ;
const comparisonFeatures = [
{
feature : "Budget Predictability" ,
fixedPrice : "High" ,
timeAndMaterial : "Medium" ,
2025-07-22 16:14:11 +05:30
dedicatedTeam : "Medium-High" ,
2025-07-11 16:54:37 +05:30
} ,
{
feature : "Flexibility for Changes" ,
fixedPrice : "Low" ,
timeAndMaterial : "High" ,
2025-07-22 16:14:11 +05:30
dedicatedTeam : "High" ,
2025-07-11 16:54:37 +05:30
} ,
{
feature : "Direct Team Control" ,
fixedPrice : "Low" ,
timeAndMaterial : "Medium" ,
2025-07-22 16:14:11 +05:30
dedicatedTeam : "High" ,
2025-07-11 16:54:37 +05:30
} ,
{
feature : "Best for Long-term Projects" ,
fixedPrice : "Low" ,
timeAndMaterial : "Medium" ,
2025-07-22 16:14:11 +05:30
dedicatedTeam : "High" ,
2025-07-11 16:54:37 +05:30
} ,
{
feature : "Quick Start" ,
fixedPrice : "High" ,
timeAndMaterial : "Medium" ,
2025-07-22 16:14:11 +05:30
dedicatedTeam : "Medium" ,
} ,
2025-07-11 16:54:37 +05:30
] ;
2025-08-08 19:23:45 +05:30
const heroBanner = [
{
category : "Engagement Options" ,
title : "Flexible Engagement Models" ,
description : "Choose from our flexible engagement models designed to fit your project needs, budget, and timeline. From fixed-price projects to dedicated teams, find the perfect collaboration approach." ,
primaryCTA : {
text : "Explore Models" ,
href : "/start-a-project" ,
icon : Target
} ,
secondaryCTA : {
text : "Get Consultation" ,
href : "/hire-talent" ,
icon : Users
}
} ,
]
2025-07-11 16:54:37 +05:30
const testimonials = [
{
2025-07-22 16:14:11 +05:30
quote :
"The Time & Material model was perfect for our evolving startup needs. We could adapt quickly while maintaining transparent costs throughout the development process." ,
2025-07-11 16:54:37 +05:30
author : "Sarah Kim" ,
role : "Founder, StartupFlow" ,
2025-07-22 16:14:11 +05:30
rating : 5 ,
2025-07-11 16:54:37 +05:30
} ,
{
2025-07-22 16:14:11 +05:30
quote :
"Fixed Price model gave us exactly what we needed - predictable costs and clear deliverables for our MVP launch. WDI delivered on time and within budget." ,
2025-07-11 16:54:37 +05:30
author : "Michael Rodriguez" ,
role : "Product Manager, TechVision" ,
2025-07-22 16:14:11 +05:30
rating : 5 ,
} ,
2025-07-11 16:54:37 +05:30
] ;
return (
< div className = "dark min-h-screen bg-background" >
2025-09-23 20:13:31 +05:30
{ /* <Navigation /> */ }
2025-07-22 16:14:11 +05:30
2025-07-23 18:53:54 +05:30
< Helmet >
{ /* Page Title and Meta Description */ }
< title > Engagement Models | Flexible Software Development Options < / title >
< meta
name = "description"
content = "Explore WDI’ s flexible software engagement models. Choose the right approach for your goals, timeline, and budget, from startups to enterprises."
/ >
{ /* Canonical Link */ }
2025-07-23 19:52:24 +05:30
< link rel = "canonical" href = "https://www.wdipl.com/engagement-models" / >
2025-07-23 18:53:54 +05:30
{ /* Open Graph Tags (for Facebook, LinkedIn) */ }
< meta property = "og:title" content = "Engagement Models | Flexible Software Development Options" / >
< meta
property = "og:description"
content = "Explore WDI’ s flexible software engagement models. Choose the right approach for your goals, timeline, and budget, from startups to enterprises."
/ >
< meta property = "og:url" content = "https://www.wdipl.com/services" / >
< meta property = "og:type" content = "website" / >
< meta property = "og:image" content = "https://www.wdipl.com/your-preview-image.jpg" / >
{ /* Twitter Card Tags */ }
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:title" content = "Engagement Models | Flexible Software Development Options" / >
< meta
name = "twitter:description"
content = "Explore WDI’ s flexible software engagement models. Choose the right approach for your goals, timeline, and budget, from startups to enterprises."
/ >
< meta name = "twitter:image" content = "https://www.wdipl.com/your-preview-image.jpg" / >
{ /* Social Profiles (using JSON-LD Schema) */ }
< script type = "application/ld+json" >
{ `
{
"@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/"
]
}
` }
< / script >
< / Helmet >
2025-08-08 19:23:45 +05:30
{ /* Hero Section */ }
< HireTalentHeroBanner
vectorComponent = { EngagementModelsVector }
category = { heroBanner [ 0 ] . category }
title = { heroBanner [ 0 ] . title }
description = { heroBanner [ 0 ] . description }
primaryCTA = { heroBanner [ 0 ] . primaryCTA }
secondaryCTA = { heroBanner [ 0 ] . secondaryCTA }
/ >
2025-07-11 16:54:37 +05:30
{ /* Introduction */ }
< section className = "py-16 bg-card/50" >
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "max-w-4xl mx-auto text-center" >
< p className = "text-lg text-muted-foreground leading-relaxed" >
2025-07-22 16:14:11 +05:30
That ' s why we offer a range of flexible engagement models designed
to provide optimal value , transparency , and control . Whether you
have a clearly defined scope or need an agile approach , we have a
model to suit your needs .
2025-07-11 16:54:37 +05:30
< / p >
< / div >
< / div >
< / section >
{ /* Core Engagement Models */ }
< section className = "py-16 bg-background" >
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "text-center mb-12" >
< h2 className = "text-3xl md:text-4xl font-bold mb-4 text-white" >
Our Core Engagement Models
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2025-07-22 16:14:11 +05:30
Flexible approaches designed to meet your specific project needs
and goals
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
< div className = "space-y-8" >
{ models . map ( ( model , index ) = > (
2025-07-22 16:14:11 +05:30
< Card
key = { index }
className = "bg-card/50 border-white/10 hover:border-[#E5195E]/30 transition-all duration-300 group"
>
2025-07-11 16:54:37 +05:30
< CardContent className = "p-8" >
< div className = "grid lg:grid-cols-3 gap-8 items-start" >
{ /* Model Overview */ }
< div className = "lg:col-span-2" >
< div className = "flex items-center gap-4 mb-6" >
2025-07-22 16:14:11 +05:30
< div
className = { ` w-12 h-12 rounded-xl bg-gradient-to-br ${ model . color } flex items-center justify-center ` }
>
2025-07-11 16:54:37 +05:30
< model.icon className = "w-6 h-6 text-white" / >
< / div >
< h3 className = "text-2xl font-bold text-white group-hover:text-[#E5195E] transition-colors duration-300" >
{ model . title }
< / h3 >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-muted-foreground mb-6 leading-relaxed" >
{ model . description }
< / p >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "grid md:grid-cols-2 gap-6" >
< div >
2025-07-22 16:14:11 +05:30
< h4 className = "text-white font-semibold mb-3" >
Best For :
< / h4 >
2025-07-11 16:54:37 +05:30
< ul className = "space-y-2" >
{ model . bestFor . map ( ( item , itemIndex ) = > (
2025-07-22 16:14:11 +05:30
< li
key = { itemIndex }
className = "flex items-center gap-2"
>
2025-07-11 16:54:37 +05:30
< CheckCircle className = "w-4 h-4 text-[#E5195E] flex-shrink-0" / >
2025-07-22 16:14:11 +05:30
< span className = "text-muted-foreground text-sm" >
{ item }
< / span >
2025-07-11 16:54:37 +05:30
< / li >
) ) }
< / ul >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div >
2025-07-22 16:14:11 +05:30
< h4 className = "text-white font-semibold mb-3" >
Benefits :
< / h4 >
2025-07-11 16:54:37 +05:30
< ul className = "space-y-2" >
{ model . benefits . map ( ( benefit , benefitIndex ) = > (
2025-07-22 16:14:11 +05:30
< li
key = { benefitIndex }
className = "flex items-center gap-2"
>
2025-07-11 16:54:37 +05:30
< Target className = "w-4 h-4 text-[#E5195E] flex-shrink-0" / >
2025-07-22 16:14:11 +05:30
< span className = "text-muted-foreground text-sm" >
{ benefit }
< / span >
2025-07-11 16:54:37 +05:30
< / li >
) ) }
< / ul >
< / div >
< / div >
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ /* CTA */ }
< div className = "flex justify-center lg:justify-end" >
2025-07-22 16:14:11 +05:30
< Button
className = "bg-[#E5195E] hover:bg-[#E5195E]/90 text-white"
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
Learn More
< ArrowRight className = "ml-2 w-4 h-4" / >
< / Button >
< / div >
< / div >
< / CardContent >
< / Card >
) ) }
< / div >
< / div >
< / section >
{ /* Comparison Table */ }
< section className = "py-16 bg-card/50" >
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "text-center mb-12" >
< h2 className = "text-3xl md:text-4xl font-bold mb-4 text-white" >
Model Comparison
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2025-07-22 16:14:11 +05:30
Compare our engagement models to find the perfect fit for your
project
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
< div className = "max-w-4xl mx-auto" >
< Card className = "bg-background/50 border-white/10 overflow-hidden" >
< CardContent className = "p-0" >
< div className = "overflow-x-auto" >
< table className = "w-full" >
< thead >
< tr className = "border-b border-white/10" >
2025-07-22 16:14:11 +05:30
< th className = "text-left p-6 text-white font-semibold" >
Feature
< / th >
< th className = "text-center p-6 text-white font-semibold" >
Fixed Price
< / th >
< th className = "text-center p-6 text-white font-semibold" >
Time & Material
< / th >
< th className = "text-center p-6 text-white font-semibold" >
Dedicated Team
< / th >
2025-07-11 16:54:37 +05:30
< / tr >
< / thead >
< tbody >
{ comparisonFeatures . map ( ( feature , index ) = > (
2025-07-22 16:14:11 +05:30
< tr
key = { index }
className = "border-b border-white/5 hover:bg-white/5"
>
< td className = "p-6 text-muted-foreground" >
{ feature . feature }
< / td >
2025-07-11 16:54:37 +05:30
< td className = "p-6 text-center" >
2025-07-22 16:14:11 +05:30
< Badge
variant = "outline"
2025-07-23 18:53:54 +05:30
className = { ` border-blue-500/30 text-blue-400 ${ feature . fixedPrice === "High"
2025-07-22 16:14:11 +05:30
? "bg-blue-500/10"
: feature . fixedPrice === "Medium"
2025-07-23 18:53:54 +05:30
? "bg-yellow-500/10"
: "bg-red-500/10"
} ` }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
{ feature . fixedPrice }
< / Badge >
< / td >
< td className = "p-6 text-center" >
2025-07-22 16:14:11 +05:30
< Badge
variant = "outline"
2025-07-23 18:53:54 +05:30
className = { ` border-green-500/30 text-green-400 ${ feature . timeAndMaterial === "High"
2025-07-22 16:14:11 +05:30
? "bg-green-500/10"
: feature . timeAndMaterial === "Medium"
2025-07-23 18:53:54 +05:30
? "bg-yellow-500/10"
: "bg-red-500/10"
} ` }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
{ feature . timeAndMaterial }
< / Badge >
< / td >
< td className = "p-6 text-center" >
2025-07-22 16:14:11 +05:30
< Badge
variant = "outline"
2025-07-23 18:53:54 +05:30
className = { ` border-[#E5195E]/30 text-[#E5195E] ${ feature . dedicatedTeam === "High"
2025-07-22 16:14:11 +05:30
? "bg-[#E5195E]/10"
: feature . dedicatedTeam . includes ( "Medium" )
2025-07-23 18:53:54 +05:30
? "bg-yellow-500/10"
: "bg-red-500/10"
} ` }
2025-07-22 16:14:11 +05:30
>
2025-07-11 16:54:37 +05:30
{ feature . dedicatedTeam }
< / Badge >
< / td >
< / tr >
) ) }
< / tbody >
< / table >
< / div >
< / CardContent >
< / Card >
< / div >
< / div >
< / section >
{ /* Choosing the Right Model */ }
< section className = "py-16 bg-background" >
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "max-w-4xl mx-auto text-center" >
< h2 className = "text-3xl md:text-4xl font-bold mb-6 text-white" >
Choosing the Right Model
< / h2 >
< p className = "text-lg text-muted-foreground mb-8 leading-relaxed" >
2025-07-22 16:14:11 +05:30
Our experts will consult with you to analyze your project ' s
specific needs , objectives , budget , and desired level of control
to recommend the most suitable engagement model for optimal
success .
2025-07-11 16:54:37 +05:30
< / p >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< Card className = "bg-card/50 border-white/10 text-left" >
< CardContent className = "p-8" >
< div className = "grid md:grid-cols-3 gap-8" >
< div className = "text-center" >
< div className = "w-16 h-16 rounded-full bg-gradient-to-br from-blue-400 to-blue-600 flex items-center justify-center mx-auto mb-4" >
< Target className = "w-8 h-8 text-white" / >
< / div >
2025-07-22 16:14:11 +05:30
< h3 className = "text-white font-semibold mb-2" >
Project Analysis
< / h3 >
< p className = "text-muted-foreground text-sm" >
We assess your requirements , scope , and timeline
< / p >
2025-07-11 16:54:37 +05:30
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "text-center" >
< div className = "w-16 h-16 rounded-full bg-gradient-to-br from-green-400 to-green-600 flex items-center justify-center mx-auto mb-4" >
< Users className = "w-8 h-8 text-white" / >
< / div >
2025-07-22 16:14:11 +05:30
< h3 className = "text-white font-semibold mb-2" >
Expert Consultation
< / h3 >
< p className = "text-muted-foreground text-sm" >
Our team provides personalized recommendations
< / p >
2025-07-11 16:54:37 +05:30
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "text-center" >
< div className = "w-16 h-16 rounded-full bg-gradient-to-br from-[#E5195E] to-[#FF6B9D] flex items-center justify-center mx-auto mb-4" >
< Zap className = "w-8 h-8 text-white" / >
< / div >
2025-07-22 16:14:11 +05:30
< h3 className = "text-white font-semibold mb-2" >
Optimal Success
< / h3 >
< p className = "text-muted-foreground text-sm" >
Achieve your goals with the perfect model
< / p >
2025-07-11 16:54:37 +05:30
< / div >
< / div >
< / CardContent >
< / Card >
< / div >
< / div >
< / section >
{ /* Testimonials */ }
2025-07-21 20:16:17 +05:30
{ / * < s e c t i o n c l a s s N a m e = " p y - 1 6 b g - c a r d / 5 0 " >
2025-07-11 16:54:37 +05:30
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "text-center mb-12" >
< h2 className = "text-3xl md:text-4xl font-bold mb-4 text-white" >
Client Success Stories
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
Real results from clients who chose the right engagement model
< / p >
< / div >
< div className = "grid md:grid-cols-2 gap-8 max-w-4xl mx-auto" >
{ testimonials . map ( ( testimonial , index ) = > (
< Card key = { index } className = "bg-background/50 border-white/10" >
< CardContent className = "p-8" >
< div className = "flex gap-1 mb-4" >
{ [ . . . Array ( testimonial . rating ) ] . map ( ( _ , i ) = > (
< Star key = { i } className = "w-5 h-5 text-yellow-400 fill-current" / >
) ) }
< / div >
< p className = "text-muted-foreground mb-6 leading-relaxed italic" >
"{testimonial.quote}"
< / p >
< div className = "border-t border-white/10 pt-6" >
< h4 className = "text-white font-semibold" > { testimonial . author } < / h4 >
< p className = "text-[#E5195E] text-sm" > { testimonial . role } < / p >
< / div >
< / CardContent >
< / Card >
) ) }
< / div >
< / div >
2025-07-21 20:16:17 +05:30
< / section > * / }
2025-07-11 16:54:37 +05:30
{ /* CTA Section */ }
< section className = "py-16 bg-background" >
< div className = "container mx-auto px-6 lg:px-8" >
< div className = "max-w-4xl mx-auto text-center" >
< h2 className = "text-3xl md:text-4xl font-bold mb-6 text-white" >
Ready to Find Your Perfect Model ?
< / h2 >
< p className = "text-lg text-muted-foreground mb-8 max-w-2xl mx-auto" >
2025-07-22 16:14:11 +05:30
Let our experts help you choose the engagement model that best
fits your project needs and goals .
2025-07-11 16:54:37 +05:30
< / p >
< div className = "flex flex-col sm:flex-row gap-4 justify-center" >
2025-07-22 16:14:11 +05:30
< Button
size = "lg"
className = "bg-[#E5195E] hover:bg-[#E5195E]/90 text-white"
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
Start Your Consultation
< ArrowRight className = "ml-2 w-4 h-4" / >
< / Button >
2025-07-22 16:14:11 +05:30
< Button
size = "lg"
variant = "outline"
className = "border-white/20 text-white hover:bg-white/10"
>
2025-07-11 16:54:37 +05:30
Compare Models
< / Button >
< / div >
< / div >
< / div >
< / section >
2025-09-23 20:13:31 +05:30
{ /* <Footer /> */ }
2025-07-11 16:54:37 +05:30
< / div >
) ;
2025-07-22 16:14:11 +05:30
} ;