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 { Check, Briefcase, Users, Zap, Heart, TrendingUp, ArrowRight, Microscope, } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function Careers() { const navigate = useNavigate(); const values = [ { icon: , title: "Innovation First", description: "We push boundaries and explore cutting-edge technologies daily", }, { icon: , title: "People Matter", description: "We invest in our team's growth, health, and work-life balance", }, { icon: , title: "Ship It", description: "We believe in execution over perfection—iterate and learn fast", }, { icon: , title: "Collaboration", description: "Great ideas come from diverse teams working together openly", }, ]; const benefits = [ "Competitive salary & equity package", "Comprehensive health insurance (medical, dental, vision)", "Unlimited PTO", "Remote-first, work from anywhere", "Equipment budget for your home office", "Professional development fund ($5k/year)", "Team offsites & retreats", "Stock options", "Parental leave", "Gym & wellness stipend", "Learning & conference budget", "Commuter benefits", ]; const openRoles = [ { title: "Senior Software Engineer", team: "Platform Engineering", location: "Remote", level: "Senior", type: "Full-time", description: "Lead architecture and implementation of next-generation platform systems", }, { title: "Game Developer", team: "GameForge", location: "Remote", level: "Mid-level", type: "Full-time", description: "Ship games monthly with our world-class production team", }, { title: "Research Scientist", team: "Labs", location: "Remote", level: "Senior", type: "Full-time", description: "Explore AI/ML applications in game development and interactive experiences", }, { title: "Product Manager", team: "Labs", location: "Remote", level: "Mid-level", type: "Full-time", description: "Shape the future of our developer tools and platforms", }, { title: "UX/UI Designer", team: "Design System", location: "Remote", level: "Mid-level", type: "Full-time", description: "Design beautiful, intuitive interfaces for millions of developers", }, { title: "DevOps Engineer", team: "Infrastructure", location: "Remote", level: "Senior", type: "Full-time", description: "Build the infrastructure that powers AeThex at scale", }, ]; const hiringProcess = [ { step: "1", title: "Application", description: "Submit your resume and tell us about yourself", }, { step: "2", title: "Phone Screen", description: "30-min chat with our recruiting team", }, { step: "3", title: "Technical Interview", description: "Technical discussion or coding challenge", }, { step: "4", title: "Take-Home Project", description: "Real-world problem relevant to the role", }, { step: "5", title: "Team Interview", description: "Meet the team and discuss culture fit", }, { step: "6", title: "Offer", description: "Receive offer and negotiate terms", }, ]; return (
{/* Header */}
Join Our Team

Work on the Future

Join a team of innovators, creators, and builders pushing the boundaries of what's possible. Work on cutting-edge technology that impacts millions of developers worldwide.

{/* Core Values */}

Our Values

{values.map((value, idx) => (
{value.icon}

{value.title}

{value.description}

))}
{/* Benefits */}

Benefits & Perks

{benefits.map((benefit, idx) => (
{benefit}
))}
{/* Open Roles */}

Open Positions

{openRoles.map((role, idx) => (

{role.title}

{role.team}

{role.description}

{role.location} {role.level} {role.type}
))}
{/* Hiring Process */}

Our Hiring Process

{hiringProcess.map((item, idx) => (
{item.step}
{idx < hiringProcess.length - 1 && (
)}

{item.title}

{item.description}

))}
{/* CTA */}

Ready to Join?

Browse open roles and apply today. We're excited to meet you.

); }