import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Check, ArrowRight, Briefcase, Zap, Code, Palette } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function Services() { const navigate = useNavigate(); const services = [ { icon: , title: "Custom Software Development", description: "Bespoke solutions built from the ground up for your unique business needs", features: [ "Web & mobile applications", "Real-time systems", "3D experiences & games", "API development", "System integration", ], color: "from-blue-500 to-cyan-500", }, { icon: , title: "Technology Consulting", description: "Strategic guidance on architecture, modernization, and digital transformation", features: [ "Technology roadmap planning", "Cloud-native architecture", "DevOps & infrastructure", "Security & compliance", "Performance optimization", ], color: "from-purple-500 to-pink-500", }, { icon: , title: "Game Development Contracts", description: "Specialized game dev services for studios and enterprises", features: [ "Full game production", "Custom game engines", "Metaverse experiences", "Roblox enterprise solutions", "Game porting & optimization", ], color: "from-green-500 to-emerald-500", }, { icon: , title: "UX/UI & Product Design", description: "Beautiful, intuitive interfaces that drive user engagement and retention", features: [ "User research & testing", "Design systems", "Interaction design", "Brand strategy", "Accessibility (WCAG)", ], color: "from-orange-500 to-red-500", }, ]; const caseStudies = [ { company: "Fortune 500 Tech Company", project: "Digital Transformation Initiative", challenge: "Legacy systems preventing innovation, slow time-to-market for new features", solution: "Cloud-native architecture redesign, microservices migration, CI/CD pipeline setup", result: "$2.5M annual cost savings, 3x faster deployment cycles", testimonial: '"AeThex transformed our entire development process. We went from quarterly releases to weekly deployments."', author: "VP of Engineering", }, { company: "Gaming Studio", project: "Multiplayer Game Architecture", challenge: "Scaling real-time multiplayer for 100K+ concurrent players", solution: "Custom networking layer, server optimization, database sharding strategy", result: "Successfully launched with 150K peak concurrent players, 99.99% uptime", testimonial: '"Their expertise in game architecture was exactly what we needed. Launch was flawless."', author: "Studio Director", }, { company: "Enterprise Client", project: "Internal Roblox Experience", challenge: "Create engaging brand experience on Roblox for corporate audience", solution: "Custom Roblox game development, branded environment, interactive activities", result: "10K+ employees engaged, 85% completion rate, record internal engagement scores", testimonial: '"We had no idea Roblox could be this powerful for internal engagement. Impressive work."', author: "HR Director", }, ]; const engagementModels = [ { model: "Fixed Project", description: "Defined scope, timeline, and budget", best: "Well-defined projects with clear requirements", pricing: "Quote-based", }, { model: "Time & Materials", description: "Flexible engagement billed hourly", best: "Exploratory projects, evolving requirements", pricing: "$150-300/hr", }, { model: "Retainer", description: "Ongoing support and maintenance", best: "Continuous support, regular updates", pricing: "Custom monthly", }, { model: "Staff Augmentation", description: "Augment your team with experienced developers", best: "Scaling teams, specialized skills needed", pricing: "Custom based on roles", }, ]; return (
{/* Header */}
Services

Enterprise Solutions

Comprehensive consulting and development services designed to drive business value and accelerate digital transformation.

{/* Service Cards */}
{services.map((service, idx) => (
{service.icon}
{service.title}

{service.description}

    {service.features.map((feature, i) => (
  • {feature}
  • ))}
))}
{/* Case Studies */}

Client Success Stories

{caseStudies.map((study, idx) => (
{study.company}

{study.project}

Challenge

{study.challenge}

Solution

{study.solution}

Result

{study.result}

"{study.testimonial}"

— {study.author}

))}
{/* Engagement Models */}

Engagement Models

{engagementModels.map((model, idx) => (

{model.model}

{model.description}

Best for

{model.best}

{model.pricing}
))}
{/* CTA */}

Ready to Transform Your Business?

Let's discuss your challenges and find the right solution for your team.

); }