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 { ArrowRight, TrendingUp } from "lucide-react"; import { useNavigate } from "react-router-dom"; const CASE_STUDIES = [ { title: "Scaling Game Performance", studio: "MegaStudios Inc.", challenge: "Handling 10,000+ concurrent players while maintaining 60fps performance", solution: "Implemented Labs optimization framework and distributed architecture patterns", results: ["99.8% uptime", "2x performance improvement", "30% cost reduction"], image: "🚀", }, { title: "Dev-Link Integration", studio: "TalentFlow Collective", challenge: "Recruiting and retaining top Roblox developers across multiple timezones", solution: "Adopted Dev-Link platform for community building and skill matching, combined with Labs training resources", results: [ "150% increase in quality hires", "40% faster onboarding", "Enhanced developer satisfaction", ], image: "🌐", highlighted: true, }, { title: "Framework Modernization", studio: "InnovateGames Ltd.", challenge: "Upgrading legacy codebase while maintaining live product", solution: "Used Labs best practices and graduated migration strategy to modernize framework", results: [ "Zero production downtime", "50% code reduction", "Modern architecture established", ], image: "⚙️", }, { title: "Team Growth & Development", studio: "GrowthLabs Studio", challenge: "Building a world-class engineering team from junior developers", solution: "Leveraged Labs educational resources and Dev-Link community for talent discovery and mentorship", results: [ "10 developers trained and promoted", "Internal innovation projects launched", "Industry recognition achieved", ], image: "👥", }, ]; export default function LabsCaseStudies() { const navigate = useNavigate(); return (
{/* Animated backgrounds */}
{/* Header */}

Case Studies

See how leading studios use AeThex Labs and Dev-Link to achieve their goals

{/* Case Studies */}
{CASE_STUDIES.map((study) => (
{study.title}

{study.studio}

{study.image}
{study.highlighted && ( Featured )}

Challenge

{study.challenge}

Solution

{study.solution}

Results

{study.results.map((result) => ( ✓ {result} ))}
))}
{/* CTA */}

Ready to Write Your Success Story?

Combine AeThex Labs research with Dev-Link's professional community to accelerate your growth

); }