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 { Microscope, Zap, Users, ArrowRight, Sparkles, Target, } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function Labs() { const navigate = useNavigate(); const projects = [ { title: "AI-Powered NPC Behavior Systems", description: "Machine learning models for realistic, adaptive NPC behavior in games", status: "In Progress", team: 5, impact: "Next-gen game AI", color: "from-purple-500 to-pink-500", }, { title: "Next-Gen Web Architecture", description: "Exploring edge computing and serverless patterns for ultra-low latency", status: "Research Phase", team: 3, impact: "Platform performance", color: "from-blue-500 to-cyan-500", }, { title: "Procedural Content Generation", description: "Algorithms for infinite, dynamic game world generation", status: "Published Research", team: 4, impact: "Game development tools", color: "from-green-500 to-emerald-500", }, { title: "Real-Time Ray Tracing Optimization", description: "Breakthrough techniques for ray tracing on consumer hardware", status: "Development", team: 6, impact: "Graphics technology", color: "from-orange-500 to-red-500", }, ]; const innovations = [ { title: "Whitepaper: Distributed Game Sync", date: "December 2024", authors: "Dr. Sarah Chen, Marcus Johnson", citation: "Proceedings of Game Dev Summit 2024", }, { title: "Open Source: AeThex Game Engine", date: "November 2024", description: "Lightweight, high-performance game engine for web and native", stars: "2.5K GitHub stars", }, { title: "Talk: Building Scalable Game Backends", date: "October 2024", event: "GDC 2024", audience: "500+ game developers", }, ]; return (
{/* Background */}
{/* Hero Section */}
Labs Logo
AeThex Labs

The Innovation Engine

AeThex Labs is our dedicated R&D pillar, focused on breakthrough technologies that create lasting competitive advantage. We invest in bleeding-edge research—from advanced AI to next-generation web architectures—while cultivating thought leadership that shapes industry direction.

Applied R&D pushing the boundaries of what's possible in software, games, and digital experiences. Our research today shapes tomorrow's products.

{/* Creator Network CTAs */}

Explore our creator community:

{/* Innovation in Action - Video Showcase */}

Innovation in Action

See our groundbreaking research and development in action

Cutting-edge research pushing the boundaries of what's possible

{/* Current Research Projects */}

Active Research Projects

{projects.map((project, idx) => (
{project.title}
{project.status} {project.team} researchers

{project.description}

Expected Impact

{project.impact}

))}
{/* Innovations & Publications */}

Recent Innovations

{innovations.map((item, idx) => (

{item.title}

{item.description && (

{item.description}

)} {item.authors && (

by {item.authors}

)}
{item.date && ( {item.date} )} {item.citation && ( {item.citation} )} {item.stars && ( {item.stars} )} {item.event && ( {item.event} )} {item.audience && ( {item.audience} )}
))}
{/* Lab Team Section */}

Meet the Lab

Our research team consists of PhD-level researchers, innovative engineers, and pioneering thinkers. We collaborate across disciplines to tackle the hardest problems in technology.

{/* CTA */}

Be Part of the Innovation

We're hiring researchers and engineers to push the boundaries of what's possible.

); }