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"; import { ArrowRight, Users, Clock, Target, DollarSign, Shield, Zap, CheckCircle, Smartphone, Code, Monitor, Database, Palette, TestTube } from "lucide-react"; import { Helmet } from "react-helmet-async"; import { useNavigate } from "react-router-dom"; export const HireTalent = () => { const navigate = useNavigate(); const talentCategories = [ { title: "Mobile App Developers", icon: Smartphone, description: "iOS, Android, and cross-platform experts who bring your mobile vision to life", href: "/hire-talent/mobile-app-developers", skills: ["Swift", "Kotlin", "React Native", "Flutter"] }, { title: "Full Stack Developers", icon: Code, description: "End-to-end development experts handling both frontend and backend seamlessly", href: "/hire-talent/full-stack-developers", skills: ["React", "Node.js", "Python", "AWS"] }, { title: "Frontend Developers", icon: Monitor, description: "UI specialists creating engaging and responsive user experiences", href: "/hire-talent/frontend-developers", skills: ["React", "Vue.js", "TypeScript", "CSS3"] }, { title: "Backend Developers", icon: Database, description: "Server-side experts building robust and scalable infrastructure", href: "/hire-talent/backend-developers", skills: ["Node.js", "Python", "Java", "PostgreSQL"] }, { title: "UI/UX Designers", icon: Palette, description: "Design experts crafting intuitive and beautiful digital experiences", href: "/hire-talent/ui-ux-designers", skills: ["Figma", "User Research", "Prototyping", "Design Systems"] }, { title: "QA Engineers", icon: TestTube, description: "Quality assurance specialists ensuring flawless software performance", href: "/hire-talent/qa-engineers", skills: ["Automation", "Selenium", "Performance Testing", "API Testing"] } ]; const whyChooseWDI = [ { icon: Shield, title: "Vetted Professionals", description: "Rigorous screening process ensures you get only the best talent" }, { icon: Zap, title: "Rapid Deployment", description: "Quickly scale your team with pre-qualified candidates" }, { icon: Target, title: "Flexible Engagement Models", description: "Hire dedicated teams, project-based talent, or individual experts" }, { icon: Users, title: "Domain Expertise", description: "Specialized in diverse tech stacks and industry verticals" }, { icon: DollarSign, title: "Cost-Effective Solutions", description: "Access global talent pools without the overheads" } ]; const hiringProcess = [ { step: "01", title: "Define Your Needs", description: "Share your project requirements and desired skill sets" }, { step: "02", title: "Candidate Matching", description: "We present you with thoroughly vetted profiles tailored to your specifications" }, { step: "03", title: "Interview & Select", description: "Interview our candidates and make your final selection" }, { step: "04", title: "Onboard & Succeed", description: "Seamlessly integrate your new talent and watch your projects thrive" } ]; return (
{/* */} {/* Hero Section */}
{/* Page Title and Meta Description */} Hire Top Tech Talent | Build Your Dream Team with WDI {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */}
Your Trusted Staffing Partner

Hire Top Tech Talent: Build Your Dream Team with WDI

Connecting You with Exceptional Tech Professionals, Effortlessly. In today's fast-paced digital landscape, access to top-tier technical talent is crucial for success.

navigate("/start-a-project")} > {/* */}
{/* Introduction */}

WDI simplifies your hiring process, connecting you with highly skilled and vetted professionals across various domains. Whether you need a single expert or an entire dedicated team, we're your partner in building the workforce that drives innovation and achieves your business goals.

{/* Why Choose WDI */}

Why Choose WDI for Talent Acquisition?

We provide more than just talent - we deliver complete hiring solutions

{whyChooseWDI.map((benefit, index) => (

{benefit.title}

{benefit.description}

))}
{/* Talent Categories */}

Explore Our Talent Pool

Find the perfect expertise for your project needs

{talentCategories.map((category, index) => ( navigate(category.href)}>

{category.title}

{category.description}

{category.skills.map((skill, skillIndex) => ( {skill} ))}
))}
{/* Hiring Process */}

Our Hiring Process

Simplified 4-step process to get you the right talent quickly

{hiringProcess.map((process, index) => (
{process.step}
{index < hiringProcess.length - 1 && (
)}

{process.title}

{process.description}

))}
{/* Stats Section */}

Trusted by Leading Companies

{[ { number: "500+", label: "Successful Placements" }, { number: "150+", label: "Expert Developers" }, { number: "40+", label: "Countries Covered" }, { number: "95%", label: "Client Retention Rate" } ].map((stat, index) => (
{stat.number}
{stat.label}
))}
{/* CTA Section */}

Ready to Build Your Dream Team?

Let's discuss your hiring needs and find the perfect talent to drive your projects forward.

{/*
); };