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 ,
Users ,
Eye ,
DollarSign ,
Zap ,
Target ,
Globe ,
Clock ,
Shield ,
CheckCircle ,
Star ,
2025-08-08 19:23:45 +05:30
UsersRound ,
2025-07-22 16:14:11 +05:30
} 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 { TeamCollaborationVector } from "@/components/vectors" ;
import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner" ;
2025-07-11 16:54:37 +05:30
export const DedicatedDevelopmentTeams = ( ) = > {
const benefits = [
{
icon : Eye ,
title : "Full Control & Transparency" ,
2025-07-22 16:14:11 +05:30
description :
"Maintain complete oversight of your team, processes, and project progress with direct communication channels." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Target ,
title : "Unwavering Focus" ,
2025-07-22 16:14:11 +05:30
description :
"Your dedicated team works exclusively on your project, ensuring maximum commitment and deep understanding of your business goals." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : DollarSign ,
title : "Cost-Effectiveness" ,
2025-07-22 16:14:11 +05:30
description :
"Access top-tier talent without the overheads of in-house recruitment, infrastructure, and benefits." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Zap ,
title : "Scalability & Flexibility" ,
2025-07-22 16:14:11 +05:30
description :
"Easily scale your team up or down based on project demands, adapting quickly to market changes." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Globe ,
title : "Access to Diverse Expertise" ,
2025-07-22 16:14:11 +05:30
description :
"Leverage a wide pool of specialists in various technologies, frameworks, and methodologies." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Clock ,
title : "Reduced Time-to-Market" ,
2025-07-22 16:14:11 +05:30
description :
"Accelerate development cycles with a cohesive and experienced team." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
2025-08-08 19:23:45 +05:30
const heroBanner = [
{
category : "Team Solutions" ,
title : "Dedicated Development Teams" ,
2026-04-07 14:56:17 +05:30
description : "Build your extended AI mobile and web development team with our dedicated developers who work exclusively on your projects. Scale fast with pre‑ vetted talent that integrates seamlessly into your workflows." ,
2025-08-08 19:23:45 +05:30
primaryCTA : {
text : "Build Your Team" ,
href : "/start-a-project" ,
icon : UsersRound
} ,
secondaryCTA : {
text : "View Team Models" ,
href : "/engagement-models" ,
icon : Users
}
} ,
]
2025-07-11 16:54:37 +05:30
const process = [
{
step : "01" ,
title : "Define Your Needs" ,
2025-07-22 16:14:11 +05:30
description :
"We'll work closely with you to understand your project scope, technical requirements, desired team size, and skill sets." ,
2025-07-11 16:54:37 +05:30
} ,
{
step : "02" ,
title : "Team Assembly" ,
2025-07-22 16:14:11 +05:30
description :
"WDI recruits and assembles a bespoke team of developers, designers, and QA specialists tailored to your specific needs." ,
2025-07-11 16:54:37 +05:30
} ,
{
step : "03" ,
title : "Seamless Integration" ,
2025-07-22 16:14:11 +05:30
description :
"The dedicated team integrates with your existing workflows, communication tools, and project management systems." ,
2025-07-11 16:54:37 +05:30
} ,
{
step : "04" ,
title : "Ongoing Collaboration" ,
2025-07-22 16:14:11 +05:30
description :
"Enjoy direct communication, regular updates, and continuous feedback loops with your team members." ,
2025-07-11 16:54:37 +05:30
} ,
{
step : "05" ,
title : "Infrastructure & Support" ,
2025-07-22 16:14:11 +05:30
description :
"We provide all necessary infrastructure, tools, and administrative support, allowing your team to focus purely on development." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
const idealFor = [
"Long-term projects with evolving requirements" ,
"Companies seeking to expand their R&D capabilities" ,
"Startups needing to build an entire product from scratch" ,
2025-07-22 16:14:11 +05:30
"Businesses looking for a stable, high-performance outsourced tech department" ,
2025-07-11 16:54:37 +05:30
] ;
const testimonials = [
{
2025-07-22 16:14:11 +05:30
quote :
"Our dedicated team from WDI has been instrumental in scaling our platform. They feel like true extensions of our in-house team and understand our vision completely." ,
2025-07-11 16:54:37 +05:30
author : "Jennifer Park" ,
role : "CTO, TechFlow Solutions" ,
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 :
"The transparency and control we have with our dedicated team is unmatched. We can adapt quickly to market changes while maintaining consistent quality." ,
2025-07-11 16:54:37 +05:30
author : "Marcus Chen" ,
role : "Head of Product, InnovateCorp" ,
2025-07-22 16:14:11 +05:30
rating : 5 ,
} ,
2025-07-11 16:54:37 +05:30
] ;
2025-09-23 20:13:31 +05:30
const navigate = useNavigate ( ) ;
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-08-08 19:23:45 +05:30
< Helmet >
2025-07-23 18:53:54 +05:30
{ /* Page Title and Meta Description */ }
< title > Dedicated Development Teams for Hire | WDI < / title >
< meta
name = "description"
content = "Scale your business with WDI’ s dedicated development teams. Get expert talent, faster delivery, and full project control tailored to your unique goals."
/ >
{ /* Canonical Link */ }
2025-07-23 19:52:24 +05:30
< link rel = "canonical" href = "https://www.wdipl.com/dedicated-development-teams" / >
2025-07-23 18:53:54 +05:30
{ /* Open Graph Tags (for Facebook, LinkedIn) */ }
< meta property = "og:title" content = "Dedicated Development Teams for Hire | WDI" / >
< meta
property = "og:description"
content = "Scale your business with WDI’ s dedicated development teams. Get expert talent, faster delivery, and full project control tailored to your unique goals."
/ >
< 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 = "Dedicated Development Teams for Hire | WDI" / >
< meta
name = "twitter:description"
content = "Scale your business with WDI’ s dedicated development teams. Get expert talent, faster delivery, and full project control tailored to your unique goals."
/ >
< 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-07-22 16:14:11 +05:30
2025-08-08 19:23:45 +05:30
{ /* Hero Section */ }
< HireTalentHeroBanner
vectorComponent = { TeamCollaborationVector }
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
WDI offers Dedicated Development Teams that act as a direct
extension of your in - house operations . You gain full control ,
transparent communication , and a highly skilled team committed
solely to your vision , ensuring project success and accelerated
growth .
2025-07-11 16:54:37 +05:30
< / p >
< / div >
< / div >
< / section >
{ /* Why Choose WDI Dedicated Team */ }
< 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" >
Why Choose a WDI Dedicated Team ?
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2026-04-07 14:56:17 +05:30
Experience the advantages of a fully committed AI ‑ driven app development team working exclusively on your AI mobile and web development solutions .
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 = "grid md:grid-cols-2 lg:grid-cols-3 gap-8" >
{ benefits . map ( ( benefit , 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-6" >
< benefit.icon className = "w-8 h-8 text-[#E5195E] mb-4 group-hover:scale-110 transition-transform duration-300" / >
< h3 className = "text-xl font-semibold text-white mb-3 group-hover:text-[#E5195E] transition-colors duration-300" >
{ benefit . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ benefit . description }
< / p >
< / CardContent >
< / Card >
) ) }
< / div >
< / div >
< / section >
{ /* How Our Dedicated Teams Work */ }
< 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" >
How Our Dedicated Teams Work
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2026-04-07 14:56:17 +05:30
A streamlined process to get your AI ‑ driven app development team up and running , fully integrated with your AI mobile and web development workflows . < / 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 = "max-w-5xl mx-auto" >
< div className = "space-y-8" >
{ process . map ( ( step , index ) = > (
< div key = { index } className = "flex items-start gap-6" >
< div className = "flex-shrink-0" >
< div className = "w-16 h-16 rounded-full bg-gradient-to-br from-[#E5195E] to-[#FF6B9D] flex items-center justify-center shadow-lg" >
2025-07-22 16:14:11 +05:30
< span className = "text-white font-bold text-lg" >
{ step . step }
< / 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
< div className = "flex-1" >
< Card className = "bg-background/50 border-white/10 hover:border-[#E5195E]/30 transition-all duration-300" >
< CardContent className = "p-6" >
< h3 className = "text-xl font-semibold text-white mb-3" >
{ step . title }
< / h3 >
< p className = "text-muted-foreground leading-relaxed" >
{ step . description }
< / p >
< / CardContent >
< / Card >
< / div >
< / div >
) ) }
< / div >
< / div >
< / div >
< / section >
{ /* Ideal For */ }
< 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" >
Ideal For
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
Perfect solutions for various business scenarios
< / p >
< / 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-6 max-w-4xl mx-auto" >
{ idealFor . map ( ( item , index ) = > (
2025-07-22 16:14:11 +05:30
< div
key = { index }
className = "flex items-center gap-3 p-4 rounded-lg bg-card/50 border border-white/10 hover:border-[#E5195E]/30 transition-all duration-300"
>
2025-07-11 16:54:37 +05:30
< CheckCircle className = "w-5 h-5 text-[#E5195E] flex-shrink-0" / >
< span className = "text-white" > { item } < / span >
< / div >
) ) }
< / 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 satisfied clients
< / 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 Build Your Innovation Hub ?
< / h2 >
< p className = "text-lg text-muted-foreground mb-8 max-w-2xl mx-auto" >
2026-04-07 14:56:17 +05:30
Get a dedicated AI ‑ driven app development team that works exclusively for you , with full transparency and control over your AI mobile and web development initiatives .
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 Building Your Team
< 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
Schedule Consultation
< / 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
} ;