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 ,
Zap ,
Target ,
DollarSign ,
Users ,
Shield ,
Cog ,
CheckCircle ,
Star ,
Smartphone ,
Code ,
Monitor ,
Database ,
Palette ,
TestTube ,
Settings ,
2025-08-08 19:23:45 +05:30
UserPlus ,
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 { DeveloperSkillsVector } from "@/components/vectors" ;
import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner" ;
2025-07-11 16:54:37 +05:30
export const TeamAugmentationServices = ( ) = > {
const benefits = [
{
icon : Zap ,
title : "Rapid Scaling" ,
2025-07-22 16:14:11 +05:30
description :
"Quickly onboard specialized talent to meet urgent project needs or seasonal demands." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Target ,
title : "Fill Skill Gaps" ,
2025-07-22 16:14:11 +05:30
description :
"Access experts in niche technologies or specific domains your in-house team might lack." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : DollarSign ,
title : "Cost-Effective Hiring" ,
2025-07-22 16:14:11 +05:30
description :
"Avoid the lengthy and expensive process of recruiting permanent employees." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Users ,
title : "Seamless Integration" ,
2025-07-22 16:14:11 +05:30
description :
"Our professionals adapt quickly to your company culture, workflows, and communication tools." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Shield ,
title : "Flexibility" ,
2025-07-22 16:14:11 +05:30
description :
"Hire individuals or small groups for short-term projects or ongoing support, scaling up or down as required." ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Cog ,
title : "Focus on Core Business" ,
2025-07-22 16:14:11 +05:30
description :
"Free up your internal resources to concentrate on strategic initiatives while we handle specialized tasks." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
2025-08-08 19:23:45 +05:30
const heroBanner = [
{
category : "Team Enhancement" ,
title : "Team Augmentation Services" ,
2026-04-07 14:56:17 +05:30
description : "Enhance your existing AI mobile and web development team with our skilled professionals. Fill skill gaps, accelerate delivery, and scale your capabilities without the overhead of full‑ time hiring." ,
2025-08-08 19:23:45 +05:30
primaryCTA : {
text : "Augment Your Team" ,
href : "/start-a-project" ,
icon : UserPlus
} ,
secondaryCTA : {
text : "View Available Skills" ,
href : "/hire-talent" ,
icon : Users
}
} ,
]
2025-07-11 16:54:37 +05:30
const process = [
{
step : "01" ,
title : "Identify Your Needs" ,
2025-07-22 16:14:11 +05:30
description :
"You specify the roles, skill sets, experience levels, and duration required." ,
2025-07-11 16:54:37 +05:30
} ,
{
step : "02" ,
title : "Candidate Selection" ,
2025-07-22 16:14:11 +05:30
description :
"We present you with pre-vetted candidates who perfectly match your requirements." ,
2025-07-11 16:54:37 +05:30
} ,
{
step : "03" ,
title : "Integration" ,
2025-07-22 16:14:11 +05:30
description :
"The chosen WDI professionals integrate directly into your team, reporting to your project managers and adhering to your processes." ,
2025-07-11 16:54:37 +05:30
} ,
{
step : "04" ,
title : "Ongoing Support" ,
2025-07-22 16:14:11 +05:30
description :
"WDI provides administrative support, ensuring the augmented talent remains productive and aligned with your goals." ,
} ,
2025-07-11 16:54:37 +05:30
] ;
const roles = [
{
icon : Smartphone ,
title : "Mobile App Developers" ,
subtitle : "(iOS, Android, Cross-platform)" ,
2025-07-22 16:14:11 +05:30
skills : [ "Swift" , "Kotlin" , "React Native" , "Flutter" , "Xamarin" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Monitor ,
title : "Frontend Developers" ,
subtitle : "(React, Angular, Vue.js)" ,
2025-07-22 16:14:11 +05:30
skills : [ "React.js" , "Angular" , "Vue.js" , "TypeScript" , "CSS3" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Database ,
title : "Backend Developers" ,
subtitle : "(Node.js, Python, Java, PHP)" ,
2025-07-22 16:14:11 +05:30
skills : [ "Node.js" , "Python" , "Java" , "PHP" , "PostgreSQL" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Code ,
title : "Full Stack Developers" ,
subtitle : "" ,
2025-07-22 16:14:11 +05:30
skills : [ "MERN" , "MEAN" , "Django" , "Laravel" , "Spring Boot" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Palette ,
title : "UI/UX Designers" ,
subtitle : "" ,
2025-07-22 16:14:11 +05:30
skills : [
"Figma" ,
"Sketch" ,
"User Research" ,
"Prototyping" ,
"Design Systems" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : TestTube ,
title : "QA Engineers" ,
subtitle : "(Manual, Automation)" ,
2025-07-22 16:14:11 +05:30
skills : [
"Selenium" ,
"Cypress" ,
"Jest" ,
"API Testing" ,
"Performance Testing" ,
] ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Settings ,
title : "DevOps Engineers" ,
subtitle : "" ,
2025-07-22 16:14:11 +05:30
skills : [ "AWS" , "Docker" , "Kubernetes" , "CI/CD" , "Terraform" ] ,
2025-07-11 16:54:37 +05:30
} ,
{
icon : Users ,
title : "Project Managers / Scrum Masters" ,
subtitle : "" ,
2025-07-22 16:14:11 +05:30
skills : [ "Agile" , "Scrum" , "Kanban" , "Jira" , "Risk Management" ] ,
} ,
2025-07-11 16:54:37 +05:30
] ;
const idealFor = [
"Accelerating project timelines" ,
"Bringing in specialized expertise for specific project phases" ,
"Managing fluctuating workloads" ,
"Reducing recruitment overheads" ,
2025-07-22 16:14:11 +05:30
"Covering temporary leaves or increased demands" ,
2025-07-11 16:54:37 +05:30
] ;
const testimonials = [
{
2025-07-22 16:14:11 +05:30
quote :
"Team augmentation with WDI was a game-changer. We quickly added React specialists to our team and delivered our project 3 weeks ahead of schedule." ,
2025-07-11 16:54:37 +05:30
author : "Alexandra Wang" ,
role : "Engineering Manager, FastTrack 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 DevOps engineer we got through team augmentation seamlessly integrated with our existing processes and dramatically improved our deployment pipeline." ,
2025-07-11 16:54:37 +05:30
author : "Carlos Lopez" ,
role : "CTO, CloudScale Inc." ,
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 > Team Augmentation Services by WDI | Scalable IT Talent < / title >
< meta
name = "description"
content = "WDI offers expert Team Augmentation Services to quickly expand your tech workforce with skilled developers, ensuring flexible, efficient project delivery and growth."
/ >
{ /* Canonical Link */ }
2025-07-23 19:52:24 +05:30
< link rel = "canonical" href = "https://www.wdipl.com/team-augmentation-services" / >
2025-07-23 18:53:54 +05:30
{ /* Open Graph Tags (for Facebook, LinkedIn) */ }
< meta property = "og:title" content = "Team Augmentation Services by WDI | Scalable IT Talent" / >
< meta
property = "og:description"
content = "WDI offers expert Team Augmentation Services to quickly expand your tech workforce with skilled developers, ensuring flexible, efficient project delivery and growth."
/ >
< 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 = "Team Augmentation Services by WDI | Scalable IT Talent" / >
< meta
name = "twitter:description"
content = "WDI offers expert Team Augmentation Services to quickly expand your tech workforce with skilled developers, ensuring flexible, efficient project delivery and growth."
/ >
< 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 = { DeveloperSkillsVector }
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
We integrate highly skilled developers , designers , and QA
engineers directly into your existing team , empowering you to
scale your capabilities quickly , efficiently , and without the
complexities of traditional hiring .
2025-07-11 16:54:37 +05:30
< / p >
< / div >
< / div >
< / section >
{ /* Why Choose WDI for Team Augmentation */ }
< 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 WDI for Team Augmentation ?
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2026-04-07 14:56:17 +05:30
Experience the advantages of AI ‑ driven app development ‑ focused team augmentation services that scale your AI mobile and web development capabilities with pre ‑ vetted talent and seamless integration .
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 Team Augmentation Works */ }
< 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 Team Augmentation Works
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2025-07-22 16:14:11 +05:30
A simple 4 - step process to integrate skilled professionals into
your team
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-5xl mx-auto" >
< div className = "grid md:grid-cols-2 lg:grid-cols-4 gap-8" >
{ process . map ( ( step , index ) = > (
< div key = { index } className = "text-center" >
< div className = "relative mb-6" >
< div className = "w-16 h-16 rounded-full bg-gradient-to-br from-[#E5195E] to-[#FF6B9D] flex items-center justify-center mx-auto 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 >
{ index < process . length - 1 && (
< div className = "hidden lg:block absolute top-8 left-full w-full h-0.5 bg-gradient-to-r from-[#E5195E]/50 to-transparent" / >
) }
< / div >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< h3 className = "text-lg font-semibold text-white mb-3" >
{ step . title }
< / h3 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< p className = "text-muted-foreground text-sm leading-relaxed" >
{ step . description }
< / p >
< / div >
) ) }
< / div >
< / div >
< / div >
< / section >
{ /* Roles We Can Augment */ }
< 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" >
Roles We Can Augment
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2026-04-07 14:56:17 +05:30
Expert professionals across all major technology domains ready to integrate into your AI ‑ driven app and web development workflows .
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-4 gap-6" >
{ roles . map ( ( role , 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" >
< role.icon className = "w-8 h-8 text-[#E5195E] mb-4 group-hover:scale-110 transition-transform duration-300" / >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< h3 className = "text-lg font-semibold text-white mb-1 group-hover:text-[#E5195E] transition-colors duration-300" >
{ role . title }
< / h3 >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
{ role . subtitle && (
2025-07-22 16:14:11 +05:30
< p className = "text-muted-foreground text-sm mb-4" >
{ role . subtitle }
< / p >
2025-07-11 16:54:37 +05:30
) }
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< div className = "space-y-1" >
{ role . skills . slice ( 0 , 3 ) . map ( ( skill , skillIndex ) = > (
< div key = { skillIndex } className = "flex items-center gap-2" >
< div className = "w-1.5 h-1.5 rounded-full bg-[#E5195E]" / >
2025-07-22 16:14:11 +05:30
< span className = "text-muted-foreground text-xs" >
{ skill }
< / span >
2025-07-11 16:54:37 +05:30
< / div >
) ) }
{ role . skills . length > 3 && (
< div className = "text-muted-foreground text-xs" >
+ { role . skills . length - 3 } more . . .
< / div >
) }
< / div >
< / CardContent >
< / Card >
) ) }
< / div >
< / div >
< / section >
{ /* Ideal For */ }
< 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" >
Ideal For
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
Perfect solutions for various business scenarios and challenges
< / 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-3xl 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-background/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 >
{ /* Benefits Comparison */ }
< 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" >
Team Augmentation vs Traditional Hiring
< / h2 >
< p className = "text-muted-foreground max-w-2xl mx-auto" >
2026-04-07 14:56:17 +05:30
Discover why AI ‑ driven team augmentation is the smarter choice for scaling your app development team and accelerating AI ‑ powered mobile and web projects .
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" >
< div className = "grid md:grid-cols-2 gap-8" >
< Card className = "bg-card/50 border-white/10" >
< CardContent className = "p-8" >
< div className = "text-center mb-6" >
< 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-xl font-bold text-white" >
Team Augmentation
< / h3 >
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
< ul className = "space-y-3" >
{ [
"Quick onboarding (1-2 weeks)" ,
"No recruitment costs" ,
"Flexible duration" ,
"Pre-vetted professionals" ,
"Immediate productivity" ,
2025-07-22 16:14:11 +05:30
"No long-term commitments" ,
2025-07-11 16:54:37 +05:30
] . map ( ( benefit , index ) = > (
< li key = { index } className = "flex items-center gap-3" >
< 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" >
{ benefit }
< / span >
2025-07-11 16:54:37 +05:30
< / li >
) ) }
< / ul >
< / CardContent >
< / Card >
2025-07-22 16:14:11 +05:30
2025-07-11 16:54:37 +05:30
< Card className = "bg-card/50 border-white/10 opacity-75" >
< CardContent className = "p-8" >
< div className = "text-center mb-6" >
< div className = "w-16 h-16 rounded-full bg-gray-500 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-xl font-bold text-white" >
Traditional Hiring
< / h3 >
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
< ul className = "space-y-3" >
{ [
"Long hiring process (8-12 weeks)" ,
"High recruitment costs" ,
"Long-term commitment" ,
"Uncertain candidate quality" ,
"Extended onboarding period" ,
2025-07-22 16:14:11 +05:30
"Employment obligations" ,
2025-07-11 16:54:37 +05:30
] . map ( ( drawback , index ) = > (
< li key = { index } className = "flex items-center gap-3" >
< div className = "w-4 h-4 rounded-full border-2 border-gray-500 flex-shrink-0" / >
2025-07-22 16:14:11 +05:30
< span className = "text-muted-foreground text-sm" >
{ drawback }
< / span >
2025-07-11 16:54:37 +05:30
< / li >
) ) }
< / ul >
< / CardContent >
< / Card >
< / 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 teams that chose augmentation
< / 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 Scale Your Team ?
< / h2 >
< p className = "text-lg text-muted-foreground mb-8 max-w-2xl mx-auto" >
2026-04-07 14:56:17 +05:30
Get skilled AI ‑ driven app development professionals to accelerate your projects and fill critical skill gaps in your mobile and web development team .
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 Team Augmentation
< 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
Discuss Your Needs
< / 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
} ;