From d88017b083cee53d128cd344b470ac1418909226 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Fri, 7 Nov 2025 23:24:59 +0000 Subject: [PATCH] Rewrite GameForge.tsx - Internal Production Hub focus cgen-1dab6f7587fe4837b6a677b408b48f8c --- client/pages/GameForge.tsx | 380 ++++++++++++++++++++++++++----------- 1 file changed, 264 insertions(+), 116 deletions(-) diff --git a/client/pages/GameForge.tsx b/client/pages/GameForge.tsx index 0de5bdb0..49c3deb2 100644 --- a/client/pages/GameForge.tsx +++ b/client/pages/GameForge.tsx @@ -2,15 +2,74 @@ 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, Zap, Target, Trophy } from "lucide-react"; +import { Gamepad2, Calendar, Users, TrendingUp, Rocket, ArrowRight } from "lucide-react"; import { useNavigate } from "react-router-dom"; export default function GameForge() { const navigate = useNavigate(); + const monthlyReleases = [ + { + month: "January 2025", + title: "Pixel Quest: Reckoning", + genre: "Action-Adventure", + team: "Green Squadron", + status: "Shipping Now", + highlights: "New combat system, 50 levels, multiplayer beta", + }, + { + month: "February 2025", + title: "Logic Master Pro", + genre: "Puzzle", + team: "Logic Lab", + status: "Pre-Production", + highlights: "Daily challenges, leaderboards, cross-platform", + }, + { + month: "March 2025", + title: "Mystic Realms: Awakening", + genre: "RPG", + team: "Adventure Wing", + status: "Development", + highlights: "Story driven, 100+ hours, procedural dungeons", + }, + ]; + + const pastReleases = [ + { + title: "Battle Royale X", + genre: "Action", + releaseDate: "Dec 2024", + players: "50K+", + rating: 4.7, + }, + { + title: "Casual Match", + genre: "Puzzle", + releaseDate: "Nov 2024", + players: "100K+", + rating: 4.5, + }, + { + title: "Speedrun Challenge", + genre: "Action", + releaseDate: "Oct 2024", + players: "35K+", + rating: 4.8, + }, + ]; + + const productionStats = [ + { label: "Games Shipped", value: "15+" }, + { label: "Monthly Cycle", value: "32 days" }, + { label: "Total Players", value: "200K+" }, + { label: "Team Size", value: "25 devs" }, + ]; + return (
+ {/* Background */}
@@ -19,136 +78,225 @@ export default function GameForge() {
{/* Hero Section */} -
-
-
- - GameForge - GameForge - - -

- The Heart of AeThex -

- -

- Month-to-month shipping cycles. Rapid iteration. Continuous - delivery. We don't just build games—we build experiences with - unstoppable momentum. -

- -
- - -
-
-
-
- - {/* Features Grid */} -
+
-
- - - - - Monthly Releases - - - -

- Predictable shipping cycles. Every month, new features and - improvements live. -

-
-
+ + + GameForge Production + - - - - - Rapid Iteration - - - -

- Fast feedback loops. We listen, iterate, and ship what - matters. -

-
-
+
+

+ Shipping Games Monthly +

+

+ AeThex GameForge is our internal game production studio. We ship a new game every month using our proprietary development pipeline and tools. +

+
- - - - - Quality Driven - - - -

- High standards. Polished experiences. Every release is - battle-tested. -

-
-
- - - - - - Player First - - - -

- Always focused on player experience. We build what gets - played. -

-
-
+
+ +
- {/* CTA Section */} -
+ {/* Production Stats */} +
+
+
+ {productionStats.map((stat, idx) => ( + + +

+ {stat.value} +

+

{stat.label}

+
+
+ ))} +
+
+
+ + {/* Upcoming Releases */} +
+
+

+ + Upcoming Releases +

+
+ {monthlyReleases.map((release, idx) => ( + + +
+
+ + {release.month} + +

+ {release.title} +

+

+ {release.genre} +

+
+ + + {release.team} + +
+
+
+ + {release.status} + +

+ {release.highlights} +

+
+
+
+
+ ))} +
+
+
+ + {/* Past Releases */} +
+
+

+ Shipped This Year +

+
+ {pastReleases.map((game, idx) => ( + + +
+

+ {game.title} +

+ + {game.genre} + +
+ +
+

Released: {game.releaseDate}

+

{game.players} active players

+
+ ⭐ {game.rating}/5 +
+
+
+
+ ))} +
+
+
+ + {/* Production Process */} +
+
+

+ Our Process +

+
+ {[ + { + phase: "Ideation", + duration: "1 week", + description: "Brainstorm and validate game concepts", + }, + { + phase: "Prototyping", + duration: "1 week", + description: "Build playable prototype to test core mechanics", + }, + { + phase: "Development", + duration: "3 weeks", + description: + "Full production with parallel art, code, and design", + }, + { + phase: "Polish & QA", + duration: "1 week", + description: "Bug fixes, optimization, and player testing", + }, + { + phase: "Launch", + duration: "1 day", + description: + "Ship to production and monitor for first 24 hours", + }, + ].map((item, idx) => ( + + +
+
+ {idx + 1} +
+
+

+ {item.phase} +

+

+ {item.description} +

+
+ + {item.duration} + +
+
+
+ ))} +
+
+
+ + {/* Team CTA */} +
-

- Ship With Momentum +

+ Part of Our Shipping Culture

- Join the fastest shipping team in the industry. We're looking - for creators, developers, and visionaries. + Our team represents the best of game development talent. Meet the people who make monthly shipping possible.