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 { Users, Zap, Target, Heart, ArrowRight } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function DevLinkAbout() { const navigate = useNavigate(); const values = [ { icon: Users, title: "Community First", description: "Built by Roblox creators, for Roblox creators", }, { icon: Zap, title: "Empower", description: "Help developers connect and grow together", }, { icon: Target, title: "Professional", description: "A platform that takes Roblox development seriously", }, { icon: Heart, title: "Inclusive", description: "Supporting developers at all skill levels", }, ]; const milestones = [ { year: "2024", event: "Dev-Link Founded", status: "Complete" }, { year: "2025", event: "Beta Launch", status: "In Progress" }, { year: "2025", event: "Public Release", status: "Q2" }, { year: "2025", event: "Job Board Launch", status: "Q3" }, ]; return (

About Dev-Link

The professional networking platform built for Roblox developers. Connect, collaborate, and grow your career in game development.

Our Mission

Dev-Link is on a mission to empower Roblox developers worldwide. We believe that the Roblox platform has created an incredible community of creators who deserve a professional space to connect, showcase their work, and find amazing opportunities. Just like LinkedIn transformed professional networking, Dev-Link is transforming how Roblox developers collaborate and build their careers.

Our Values

{values.map((value, idx) => { const Icon = value.icon; return (

{value.title}

{value.description}

); })}

Our Roadmap

{milestones.map((milestone, idx) => (
{milestone.year}

{milestone.event}

{milestone.status}
))}

Join the Community

Be part of the professional Roblox developer community

); }