import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent } from "@/components/ui/card"; import { Users, Linkedin, Github, Mail, ArrowRight } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function LabsJoinTeam() { const navigate = useNavigate(); const team = [ { name: "Dr. Sarah Chen", role: "Research Director", bio: "PhD in Computer Science (MIT). 15+ years in game technology. Led AI research at major studios.", expertise: ["AI/ML", "Game Architecture", "Team Leadership"], social: { linkedin: "#", github: "#", email: "sarah@aethex.com", }, }, { name: "Marcus Johnson", role: "Senior Graphics Engineer", bio: "GPU optimization specialist. Published research on ray tracing. Built rendering engines at AAA studios.", expertise: ["Graphics", "GPU Computing", "Performance"], social: { linkedin: "#", github: "#", email: "marcus@aethex.com", }, }, { name: "Elena Rodriguez", role: "Distributed Systems Engineer", bio: "Expert in scalable backend architecture. Built systems handling 1M+ concurrent connections.", expertise: ["Distributed Systems", "Cloud Architecture", "DevOps"], social: { linkedin: "#", github: "#", email: "elena@aethex.com", }, }, { name: "David Kim", role: "ML Engineer", bio: "TensorFlow contributor. Specializes in game AI and procedural generation algorithms.", expertise: ["Machine Learning", "Game AI", "Neural Networks"], social: { linkedin: "#", github: "#", email: "david@aethex.com", }, }, { name: "Sophia Patel", role: "Research Scientist", bio: "Published 10+ papers on game optimization. PhD from Stanford. Published in top conferences.", expertise: ["Algorithm Design", "Optimization", "Research"], social: { linkedin: "#", github: "#", email: "sophia@aethex.com", }, }, { name: "Alex Morgan", role: "Director of Innovation", bio: "20+ years driving innovation. Mentor to the team. Visionary for future of gaming tech.", expertise: ["Vision", "Mentorship", "Strategy"], social: { linkedin: "#", github: "#", email: "alex@aethex.com", }, }, ]; return (
{/* Background */}
{/* Header */}

Meet the Lab

World-class researchers and engineers dedicated to advancing technology. Our team includes PhD researchers, published authors, and visionary thinkers.

{/* Team Grid */}
{team.map((member, idx) => ( {/* Avatar Placeholder */}
{member.name .split(" ") .map((n) => n[0]) .join("")}
{/* Name & Role */}

{member.name}

{member.role}

{/* Bio */}

{member.bio}

{/* Expertise */}

Expertise

{member.expertise.map((skill, i) => ( {skill} ))}
{/* Social Links */}
))}
{/* Culture */}

Lab Culture

{[ { title: "Push Boundaries", description: "We tackle problems nobody else is solving. Innovation over comfort.", }, { title: "Publish Results", description: "Share your research with the world. Present at conferences. Build your reputation.", }, { title: "Mentor Others", description: "Junior researchers learn from seniors. We grow as a team and help the community.", }, ].map((item, idx) => (

{item.title}

{item.description}

))}
{/* CTA */}

Join the Lab

We're looking for brilliant minds to join our team. Researchers, engineers, and visionaries welcome.

); }