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 { Briefcase, MapPin, DollarSign, Clock, ArrowRight } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function DevLinkJobs() { const navigate = useNavigate(); const jobs = [ { title: "Senior Roblox Developer", company: "Studio XYZ", type: "Full-time", location: "Remote", salary: "$120K - $150K/yr", description: "Lead development on flagship title with 100K+ players", skills: ["Roblox", "Lua", "Leadership"], }, { title: "Game Designer", company: "Creative Games Inc", type: "Contract", location: "Remote", salary: "$80/hr", description: "Design gameplay systems for new multiplayer game", skills: ["Game Design", "Roblox", "Balancing"], }, { title: "UI/UX Designer", company: "Pixel Studios", type: "Part-time", location: "Remote", salary: "$50/hr", description: "Create beautiful interfaces for mobile game", skills: ["UI Design", "Roblox", "User Research"], }, { title: "Backend Engineer", company: "GameTech Corp", type: "Full-time", location: "Hybrid", salary: "$130K - $170K/yr", description: "Build scalable backend systems for multiplayer platform", skills: ["Backend", "Systems Design", "Databases"], }, { title: "Audio Engineer", company: "Sound Studios", type: "Contract", location: "Remote", salary: "$75/hr", description: "Compose and implement audio for 5-game project", skills: ["Audio Design", "Music Composition", "SFX"], }, { title: "QA Tester", company: "Quality First Games", type: "Full-time", location: "Remote", salary: "$60K - $80K/yr", description: "Comprehensive testing on multiplayer platform", skills: ["QA", "Testing", "Roblox"], }, ]; return (

Job Board

Find your next opportunity in the Roblox ecosystem. Full-time, part-time, and contract roles available.

{jobs.map((job, idx) => (

{job.title}

{job.company}

{job.description}

{job.type} {job.location}
{job.salary}
{job.skills.map((skill, i) => ( {skill} ))}
))}

Hiring? Post a Job

Reach 50K+ talented Roblox developers.

); }