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 { useArmTheme } from "@/contexts/ArmThemeContext"; import { Briefcase, CheckCircle, TrendingUp, Users, Zap, ArrowRight, Code, Palette, Shield, Cpu, BarChart3, Rocket, } from "lucide-react"; import { useNavigate } from "react-router-dom"; import { useEffect, useState, useRef } from "react"; import LoadingScreen from "@/components/LoadingScreen"; import { useArmToast } from "@/hooks/use-arm-toast"; export default function Corp() { const navigate = useNavigate(); const { theme } = useArmTheme(); const armToast = useArmToast(); const [isLoading, setIsLoading] = useState(true); const toastShownRef = useRef(false); useEffect(() => { const timer = setTimeout(() => { setIsLoading(false); if (!toastShownRef.current) { armToast.system("Corp systems engaged"); toastShownRef.current = true; } }, 900); return () => clearTimeout(timer); }, [armToast]); if (isLoading) { return ( ); } 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 services = [ { title: "Custom Software Development", description: "Bespoke applications built for enterprise scale", icon: Code, examples: [ "Web & mobile applications", "Real-time systems", "3D experiences & games", "API development", ], color: "from-blue-500 to-cyan-500", }, { title: "Technology Consulting", description: "Strategic guidance for digital transformation", icon: Briefcase, 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", icon: Rocket, 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", icon: Palette, 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", }, ]; const processSteps = [ { step: 1, title: "Discovery & Strategy", description: "Understand your business goals and technical challenges", }, { step: 2, title: "Architecture & Design", description: "Create scalable, robust system designs", }, { step: 3, title: "Development & Iteration", description: "Build with quality and speed using agile practices", }, { step: 4, title: "Deployment & Support", description: "Launch with confidence and 24/7 ongoing support", }, ]; return (
{/* Background Effects */}
{/* Hero Section */}
{/* Logo */}
Corp Logo
{/* Tagline Badge */}
The Profit Engine
{/* Main Headline */}

Enterprise Engineering

High-margin consulting, proprietary software, and specialized game development that funds AeThex's ambitious innovation roadmap. We deliver enterprise-grade solutions powered by cutting-edge technology from our Labs.

{/* CTA Buttons */}
{/* Trust Indicators */}
{highlights.map((item, idx) => { const Icon = item.icon; return (

{item.metric}

{item.label}

); })}
{/* Core Missions */}

Three Strategic Pillars

Every engagement drives revenue while advancing our mission to democratize advanced technology

💰
High-Margin Revenue

Enterprise consulting contracts with premium pricing that fund our research and development initiatives

âš¡
Technology Transfer

Deploy innovations from Labs to production, validating new technologies with real enterprise clients

🚀
Market Feedback

Gather real-world insights from enterprise clients to inform next-generation product development

{/* Services */}

Service Offerings

End-to-end solutions for enterprise challenges

{services.map((service, idx) => { const Icon = service.icon; return (
Specialized
{service.title}

{service.description}

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

Our Engagement Process

From discovery to delivery, we follow a proven methodology

{processSteps.map((step) => (
{step.step}

{step.title}

{step.description}

{step.step < 4 && (
)}
))}
{/* Case Studies */}

Client Success Stories

Real results from real enterprise partnerships

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

Client

{win.company}

Challenge

{win.challenge}

Solution

{win.solution}

Result

{win.result}

))}
{/* Final CTA */}

Ready to Transform Your Enterprise?

Let's discuss how AeThex Corp can accelerate your digital innovation with proven expertise and cutting-edge technology.

); }