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 { Briefcase, CheckCircle, TrendingUp, Users, Zap, ArrowRight, } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function Corp() { const navigate = useNavigate(); const highlights = [ { metric: "$50M+", label: "Total Client Impact", icon: TrendingUp, }, { metric: "100+", label: "Enterprise Clients", icon: Users, }, { metric: "99.9%", label: "Project Success Rate", icon: CheckCircle, }, { metric: "24/7", label: "Support Available", icon: Zap, }, ]; const serviceAreas = [ { title: "Custom Software Development", description: "Bespoke applications tailored to your business needs", examples: [ "Enterprise web applications", "Mobile apps (iOS/Android)", "Real-time systems", "3D experiences & games", ], color: "from-blue-500 to-cyan-500", }, { title: "Technology Consulting", description: "Strategic guidance for digital transformation", examples: [ "Architecture design", "Cloud strategy", "DevOps & infrastructure", "Security & compliance", ], color: "from-purple-500 to-pink-500", }, { title: "Game Development Services", description: "Specialized expertise for gaming companies", examples: [ "Full game production", "Metaverse experiences", "Roblox enterprise solutions", "Engine optimization", ], color: "from-green-500 to-emerald-500", }, { title: "UX/UI & Design", description: "Beautiful interfaces that drive engagement", examples: [ "User research", "Design systems", "Accessibility (WCAG)", "Brand strategy", ], color: "from-orange-500 to-red-500", }, ]; const recentWins = [ { company: "Global Tech Corp", challenge: "Legacy systems blocking innovation", solution: "Cloud-native modernization with microservices", result: "$2.5M annual savings, 3x faster deployments", }, { company: "Gaming Studio", challenge: "Scaling multiplayer to 100K concurrent players", solution: "Custom networking architecture & optimization", result: "99.99% uptime, 150K peak concurrent users", }, { company: "Financial Services Firm", challenge: "Building real-time trading platform", solution: "Low-latency system with custom databases", result: "Sub-millisecond latency, 99.95% uptime", }, ]; return (
{/* Background */}
{/* Hero Section */}
Corp Logo
AeThex Corp

The Profit Engine

AeThex Corp delivers high-margin enterprise consulting and specialized software development. We leverage proprietary technologies from Labs to create cutting-edge solutions while generating stable, benchmarkable revenue that funds our ambitious R&D roadmap.

{/* Creator Network CTAs */}

Explore our creator community:

{/* Highlights */}
{highlights.map((item, idx) => { const Icon = item.icon; return (

{item.metric}

{item.label}

); })}
{/* Service Areas */}

What We Offer

{serviceAreas.map((service, idx) => (
{service.title}

{service.description}

    {service.examples.map((example, i) => (
  • {example}
  • ))}
))}
{/* Client Wins */}

Recent Success Stories

{recentWins.map((win, idx) => (

CLIENT

{win.company}

CHALLENGE

{win.challenge}

SOLUTION

{win.solution}

RESULT

{win.result}

))}
{/* Engagement Models */}

How We Work

{[ { model: "Fixed Project", description: "Defined scope, budget & timeline", }, { model: "Time & Materials", description: "Flexible engagement with hourly billing", }, { model: "Retainer", description: "Ongoing support & continuous improvement", }, { model: "Staff Augmentation", description: "Specialized developers for your team", }, ].map((model, idx) => (

{model.model}

{model.description}

))}
{/* CTA */}

Ready to Partner?

Let's discuss your business challenges and build a solution that drives results.

); }