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 { Users, Github, Mail, Linkedin } from "lucide-react"; import { useNavigate } from "react-router-dom"; const TEAM_MEMBERS = [ { name: "Amanda Foster", role: "Platform Lead", bio: "Building the future of developer networking", avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=Amanda", skills: ["Platform", "Product", "Leadership"], social: { github: "#", linkedin: "#", email: "#" }, }, { name: "Chris Martinez", role: "Community Lead", bio: "Fostering connections between developers", avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=Chris", skills: ["Community", "Engagement", "Growth"], social: { github: "#", linkedin: "#", email: "#" }, }, { name: "Priya Sharma", role: "Product Manager", bio: "Shaping the future of Dev-Link platform", avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=Priya", skills: ["Product", "Strategy", "Design"], social: { github: "#", linkedin: "#", email: "#" }, }, { name: "Marcus Williams", role: "Engineering Lead", bio: "Building robust and scalable infrastructure", avatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=Marcus", skills: ["Engineering", "Infrastructure", "Scaling"], social: { github: "#", linkedin: "#", email: "#" }, }, ]; export default function DevLinkTeams() { const navigate = useNavigate(); return (
{/* Animated backgrounds */}
{/* Header */}
Our Team

Meet the Dev-Link Team

Connecting Roblox developers worldwide

{/* Team Grid */}
{TEAM_MEMBERS.map((member) => ( {member.name} {member.name}

{member.role}

{member.bio}

{member.skills.map((skill) => ( {skill} ))}
))}
{/* Hiring Section */}

Join Dev-Link

Help us build the professional network for Roblox developers

); }