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 { Search, Star, Users, ArrowRight, Github } from "lucide-react"; import { useNavigate, useState } from "react-router-dom"; export default function DevLinkProfiles() { const navigate = useNavigate(); const [searchQuery, setSearchQuery] = useState(""); const developers = [ { name: "Alex Rivera", title: "Roblox Game Developer", skills: ["Roblox", "Lua", "Game Design"], portfolio: "3 games shipped", rating: 4.9, available: true, }, { name: "Jordan Chen", title: "Full Stack Developer", skills: ["Roblox", "TypeScript", "Backend"], portfolio: "5 projects", rating: 4.8, available: true, }, { name: "Sam Taylor", title: "UI/UX Designer", skills: ["Game UI", "Roblox", "Design"], portfolio: "10+ designs", rating: 4.7, available: false, }, { name: "Morgan Lee", title: "Audio Engineer", skills: ["Game Audio", "Music", "Sound Design"], portfolio: "15+ games", rating: 4.9, available: true, }, { name: "Casey Williams", title: "Technical Lead", skills: ["Architecture", "Roblox", "Leadership"], portfolio: "Lead on 20+ games", rating: 5.0, available: false, }, { name: "Riley Martinez", title: "Gameplay Programmer", skills: ["Game Logic", "Roblox", "C++"], portfolio: "8 shipped titles", rating: 4.8, available: true, }, ]; return (

Developer Directory

Find and connect with talented Roblox developers, browse portfolios, and discover collaboration opportunities.

setSearchQuery(e.target.value)} placeholder="Search by name, skill, or role..." className="w-full pl-12 pr-4 py-3 bg-cyan-950/40 border border-cyan-400/30 rounded-lg text-cyan-300 placeholder-cyan-400/50 focus:outline-none focus:border-cyan-400/60" />
{developers.map((dev, idx) => (
{dev.name .split(" ") .map((n) => n[0]) .join("")}
{dev.available && ( Available )}

{dev.name}

{dev.title}

{dev.skills.map((skill, i) => ( {skill} ))}
{dev.portfolio} {dev.rating}
))}

Create Your Profile

Showcase your work and connect with other developers.

); }