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, 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 */}
{/* Hero Section */}
GameForge Logo
GameForge Production

Shipping Games Monthly

AeThex GameForge is our internal production studio that demonstrates disciplined, efficient development. We ship a new game every month using proprietary development pipelines and tools from Labs, proving our technology's real-world impact while maintaining controlled burn rates.

{/* 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 */}

Part of Our Shipping Culture

Our team represents the best of game development talent. Meet the people who make monthly shipping possible.

); }