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 { CheckCircle, Users, BookOpen, Code, Zap, ArrowRight, } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function LabsGetInvolved() { const navigate = useNavigate(); const opportunities = [ { title: "Research Partnerships", description: "Collaborate with our team on research projects", details: [ "Co-author research papers", "Access to our lab facilities", "Joint publications", "Revenue sharing on commercialized research", ], icon: , color: "from-purple-500 to-pink-500", }, { title: "Open Source Contributions", description: "Help us build and improve our open-source projects", details: [ "Fork and contribute to projects", "Get recognized as contributor", "Influence project direction", "Build your open-source portfolio", ], icon: , color: "from-green-500 to-emerald-500", }, { title: "Speaking & Workshops", description: "Share your expertise with our community", details: [ "Host technical workshops", "Speak at our conferences", "Lead educational content", "Build your professional brand", ], icon: , color: "from-blue-500 to-cyan-500", }, { title: "Technical Advisory", description: "Advise us on emerging technologies", details: [ "Join our advisory board", "Shape research direction", "Quarterly meetings", "Competitive advisory fees", ], icon: , color: "from-orange-500 to-red-500", }, ]; const process = [ { step: 1, title: "Express Interest", description: "Tell us which opportunity excites you", }, { step: 2, title: "Initial Conversation", description: "Meet with our team to discuss details", }, { step: 3, title: "Formalize Agreement", description: "Sign partnership terms and get started", }, { step: 4, title: "Collaborate", description: "Work together to advance technology", }, ]; return (
{/* Background */}
{/* Header */}

Get Involved

There are many ways to collaborate with AeThex Labs. Whether you're a researcher, developer, or thought leader, we'd love to work together.

{/* Opportunities Grid */}
{opportunities.map((opp, idx) => (
{opp.icon}
{opp.title}

{opp.description}

    {opp.details.map((detail, i) => (
  • {detail}
  • ))}
))}
{/* How It Works */}

How to Get Started

{process.map((item) => (
{item.step}

{item.title}

{item.description}

))}
{/* Benefits */}

Why Partner With Labs

{[ { title: "Cutting-Edge Technology", description: "Access to our latest research and innovations before they're public", }, { title: "Global Reach", description: "Connect with 50K+ developers in our ecosystem and beyond", }, { title: "Professional Growth", description: "Build your reputation through published research and speaking engagements", }, { title: "Revenue Sharing", description: "Get compensated for contributions that drive business value", }, { title: "Mentorship", description: "Learn from world-class researchers and engineers on our team", }, { title: "Community Impact", description: "Help shape the future of gaming and digital technology", }, ].map((benefit, idx) => (

{benefit.title}

{benefit.description}

))}
{/* CTA */}

Ready to Collaborate?

Reach out to learn more about our partnership opportunities.

); }