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, DollarSign, Clock, Users, Target, Zap, Shield, CheckCircle, Star, } from "lucide-react"; import { navigateTo } from "@/App"; import { Helmet } from "react-helmet-async"; import { EngagementModelsVector } from "@/components/vectors"; import { HireTalentHeroBanner } from "@/components/HireTalentHeroBanner"; export const EngagementModels = () => { const models = [ { icon: DollarSign, title: "Fixed Price Model", 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", }, { icon: Clock, title: "Time & Material (T&M) Model", 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", }, { icon: Users, title: "Dedicated Team Model", 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]", }, ]; const comparisonFeatures = [ { feature: "Budget Predictability", fixedPrice: "High", timeAndMaterial: "Medium", dedicatedTeam: "Medium-High", }, { feature: "Flexibility for Changes", fixedPrice: "Low", timeAndMaterial: "High", dedicatedTeam: "High", }, { feature: "Direct Team Control", fixedPrice: "Low", timeAndMaterial: "Medium", dedicatedTeam: "High", }, { feature: "Best for Long-term Projects", fixedPrice: "Low", timeAndMaterial: "Medium", dedicatedTeam: "High", }, { feature: "Quick Start", fixedPrice: "High", timeAndMaterial: "Medium", dedicatedTeam: "Medium", }, ]; 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 } }, ] const testimonials = [ { quote: "The Time & Material model was perfect for our evolving startup needs. We could adapt quickly while maintaining transparent costs throughout the development process.", author: "Sarah Kim", role: "Founder, StartupFlow", rating: 5, }, { 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.", author: "Michael Rodriguez", role: "Product Manager, TechVision", rating: 5, }, ]; return (
{/* Page Title and Meta Description */} Engagement Models | Flexible Software Development Options {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */} {/* Hero Section */} {/* Introduction */}

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.

{/* Core Engagement Models */}

Our Core Engagement Models

Flexible approaches designed to meet your specific project needs and goals

{models.map((model, index) => (
{/* Model Overview */}

{model.title}

{model.description}

Best For:

    {model.bestFor.map((item, itemIndex) => (
  • {item}
  • ))}

Benefits:

    {model.benefits.map((benefit, benefitIndex) => (
  • {benefit}
  • ))}
{/* CTA */}
))}
{/* Comparison Table */}

Model Comparison

Compare our engagement models to find the perfect fit for your project

{comparisonFeatures.map((feature, index) => ( ))}
Feature Fixed Price Time & Material Dedicated Team
{feature.feature} {feature.fixedPrice} {feature.timeAndMaterial} {feature.dedicatedTeam}
{/* Choosing the Right Model */}

Choosing the Right Model

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.

Project Analysis

We assess your requirements, scope, and timeline

Expert Consultation

Our team provides personalized recommendations

Optimal Success

Achieve your goals with the perfect model

{/* Testimonials */} {/*

Client Success Stories

Real results from clients who chose the right engagement model

{testimonials.map((testimonial, index) => (
{[...Array(testimonial.rating)].map((_, i) => ( ))}

"{testimonial.quote}"

{testimonial.author}

{testimonial.role}

))}
*/} {/* CTA Section */}

Ready to Find Your Perfect Model?

Let our experts help you choose the engagement model that best fits your project needs and goals.

); };