diff --git a/client/pages/dashboards/GameForgeDashboard.tsx b/client/pages/dashboards/GameForgeDashboard.tsx new file mode 100644 index 00000000..abd7f5d2 --- /dev/null +++ b/client/pages/dashboards/GameForgeDashboard.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 { Rocket, ArrowRight, Gamepad2, Users, Zap } from "lucide-react"; + +export default function GameForgeDashboard() { + const navigate = useNavigate(); + + return ( + +
+
+ {/* Header */} +
+
+
+
+ +
+
+

+ GAMEFORGE Project Studio +

+

+ This is the future home for your active game sprints, team Kanban boards, and build submissions per our GameForge Plan. +

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

Coming Soon

+
+

+ The full bespoke GAMEFORGE dashboard with project management, team boards, and build tracking is currently in development per our Phase 3 Roadmap. +

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

+ + Join the Next Sprint! +

+

+ The GAMEFORGE is already active! Go to the FOUNDATION's community hub to apply for a mentor and join the next 1-month game jam. +

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

🎮

+

Active Sprints

+

1-month game development cycles

+
+
+ + +

👥

+

Team Collaboration

+

Kanban boards & sprint planning

+
+
+ + +

🚀

+

Build Submissions

+

Ship your final game builds

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