diff --git a/client/pages/devlink/DevLinkAbout.tsx b/client/pages/devlink/DevLinkAbout.tsx index 44cf852b..2d2e4e6d 100644 --- a/client/pages/devlink/DevLinkAbout.tsx +++ b/client/pages/devlink/DevLinkAbout.tsx @@ -1,105 +1,167 @@ 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, Zap, TrendingUp, Globe } from "lucide-react"; +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 (
- {/* Animated backgrounds */}
-
+
- {/* Header */} -
+
-

+

About Dev-Link

-

- The professional network for Roblox developers +

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

- {/* Content */} -
-
-
-

Our Mission

-

- Dev-Link is a professional networking platform designed specifically for Roblox developers. We - connect talented creators, studios, and teams to build meaningful professional relationships, - discover opportunities, and advance careers in the thriving Roblox ecosystem. -

-
+
+
+

+ 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. +

+
+
+
+
- {/* Values */} -
- - - - Connection - - -

- Connecting Roblox developers with peers and opportunities -

-
-
- - - - Impact - - -

- Creating tangible career and business opportunities -

-
-
- - - - Growth - - -

- Supporting career advancement and professional development -

-
-
- - - - Community - - -

- Building a vibrant global community of Roblox creators -

-
-
+
+
+

+ 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 +

+ +
+