diff --git a/client/pages/dashboards/DevLinkDashboard.tsx b/client/pages/dashboards/DevLinkDashboard.tsx new file mode 100644 index 00000000..56ae8110 --- /dev/null +++ b/client/pages/dashboards/DevLinkDashboard.tsx @@ -0,0 +1,94 @@ +import { useNavigate } from "react-router-dom"; +import Layout from "@/components/Layout"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Database, ArrowRight, Briefcase, Users, Zap } from "lucide-react"; + +export default function DevLinkDashboard() { + const navigate = useNavigate(); + + return ( + +
+
+ {/* Header */} +
+
+
+
+ +
+
+

+ DEV-LINK Roblox Network +

+

+ This is the future home for your specialized Roblox portfolio, team management, and B2B job feed per our EdTech GTM plan. +

+
+ + {/* Coming Soon Card */} + + + {/* Status */} +
+
+

Coming Soon

+
+

+ The full bespoke DEV-LINK dashboard with Roblox-specific portfolio tools, team management, and B2B job feeds is currently in development per our Phase 3 Roadmap. +

+
+ + {/* Guiding CTA */} +
+
+

+ + Find a Roblox Job Today +

+

+ The DEV-LINK job board is already live! You can browse all open Roblox developer opportunities on our NEXUS marketplace right now. +

+
+ +
+
+
+ + {/* Features Coming */} +
+ + +

🎨

+

Roblox Portfolio

+

Showcase your creations & experiences

+
+
+ + +

👥

+

Team Management

+

Collaborate with Roblox teams

+
+
+ + +

💼

+

Job Feed

+

B2B opportunities & contracts

+
+
+
+
+
+
+
+ ); +}