From df49291fbc37c2f9491b4a97a7e6384f9b6dcc49 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Fri, 7 Nov 2025 16:45:03 +0000 Subject: [PATCH] Create GameForge - Start Building sub-page cgen-73b37d5188934b6d8b97d3a1816dccba --- .../gameforge/GameForgeJoinGameForge.tsx | 144 ++++++++++++++++++ .../gameforge/GameForgeStartBuilding.tsx | 144 ++++++++++++++++++ .../gameforge/GameForgeViewPortfolio.tsx | 144 ++++++++++++++++++ 3 files changed, 432 insertions(+) create mode 100644 client/pages/gameforge/GameForgeJoinGameForge.tsx create mode 100644 client/pages/gameforge/GameForgeStartBuilding.tsx create mode 100644 client/pages/gameforge/GameForgeViewPortfolio.tsx diff --git a/client/pages/gameforge/GameForgeJoinGameForge.tsx b/client/pages/gameforge/GameForgeJoinGameForge.tsx new file mode 100644 index 00000000..2360c565 --- /dev/null +++ b/client/pages/gameforge/GameForgeJoinGameForge.tsx @@ -0,0 +1,144 @@ +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, Target, Heart } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function GameForgeJoinGameForge() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated grid background */} +
+
+
+
+
+ +
+ {/* Hero Section */} +
+
+
+ + + + + Join GameForge + + +

+ Become Part of the Community +

+ +

+ Join thousands of game developers building together. Monthly + shipping cycles, rapid iteration, and unstoppable momentum. +

+ +
+ + +
+
+
+
+ + {/* Member Benefits */} +
+
+

+ Member Benefits +

+
+ + + + + Monthly Releases + + + +

+ Release your game monthly with built-in distribution and + community exposure. +

+
+
+ + + + + + Growth Support + + + +

+ Dedicated support to help your game grow and reach + thousands of players. +

+
+
+ + + + + + Community Network + + + +

+ Connect with fellow developers, share knowledge, and + collaborate on projects. +

+
+
+ + + + + + Resources & Tools + + + +

+ Access to templates, libraries, and development tools to + accelerate your work. +

+
+
+
+
+
+
+
+ + ); +} diff --git a/client/pages/gameforge/GameForgeStartBuilding.tsx b/client/pages/gameforge/GameForgeStartBuilding.tsx new file mode 100644 index 00000000..54fddfa4 --- /dev/null +++ b/client/pages/gameforge/GameForgeStartBuilding.tsx @@ -0,0 +1,144 @@ +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 { Gamepad2, BookOpen, Zap, Code } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function GameForgeStartBuilding() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated grid background */} +
+
+
+
+
+ +
+ {/* Hero Section */} +
+
+
+ + + + + Start Building + + +

+ Build Amazing Games +

+ +

+ Everything you need to start creating. From tutorials to + templates, we've got you covered. +

+ +
+ + +
+
+
+
+ + {/* Resources Grid */} +
+
+

+ Building Resources +

+
+ + + + + Documentation + + + +

+ Comprehensive guides and API reference for all tools and + frameworks. +

+
+
+ + + + + + Quick Start + + + +

+ Get your first game up and running in minutes with our + setup guides. +

+
+
+ + + + + + Video Tutorials + + + +

+ Learn by watching. Hundreds of video tutorials for all + skill levels. +

+
+
+ + + + + + Game Templates + + + +

+ Starting templates and boilerplates for various game genres + and styles. +

+
+
+
+
+
+
+
+ + ); +} diff --git a/client/pages/gameforge/GameForgeViewPortfolio.tsx b/client/pages/gameforge/GameForgeViewPortfolio.tsx new file mode 100644 index 00000000..a6e2fee8 --- /dev/null +++ b/client/pages/gameforge/GameForgeViewPortfolio.tsx @@ -0,0 +1,144 @@ +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 { Trophy, Star, Users, Gamepad2 } from "lucide-react"; +import { useNavigate } from "react-router-dom"; + +export default function GameForgeViewPortfolio() { + const navigate = useNavigate(); + + return ( + +
+ {/* Animated grid background */} +
+
+
+
+
+ +
+ {/* Hero Section */} +
+
+
+ + + + + Portfolio Showcase + + +

+ Featured Games & Projects +

+ +

+ Explore the best games and projects built by our community. + Get inspired and showcase your own work. +

+ +
+ + +
+
+
+
+ + {/* Featured Projects */} +
+
+

+ Trending Projects +

+
+ + + + + Award Winners + + + +

+ The best games that have won accolades and community + recognition. +

+
+
+ + + + + + Popular This Month + + + +

+ Most played and loved games released this month by our + creators. +

+
+
+ + + + + + Community Picks + + + +

+ Games voted for by our community as the absolute best + experiences. +

+
+
+ + + + + + Just Launched + + + +

+ The newest games just released by our talented game + developers. +

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