Rewrite GameForge.tsx - Internal Production Hub focus
cgen-1dab6f7587fe4837b6a677b408b48f8c
This commit is contained in:
parent
50b57b6e1e
commit
d88017b083
1 changed files with 264 additions and 116 deletions
|
|
@ -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 (
|
||||
<Layout>
|
||||
<div className="relative min-h-screen bg-black text-white overflow-hidden">
|
||||
{/* Background */}
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.12] [background-image:radial-gradient(circle_at_top,#22c55e_0,rgba(0,0,0,0.45)_55%,rgba(0,0,0,0.9)_100%)]" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-[linear-gradient(transparent_0,transparent_calc(100%-1px),rgba(34,197,94,0.05)_calc(100%-1px))] bg-[length:100%_32px]" />
|
||||
<div className="pointer-events-none absolute inset-0 opacity-[0.08] [background-image:linear-gradient(90deg,rgba(34,197,94,0.1)_1px,transparent_1px),linear-gradient(0deg,rgba(34,197,94,0.1)_1px,transparent_1px)] [background-size:50px_50px] animate-pulse" />
|
||||
|
|
@ -19,136 +78,225 @@ export default function GameForge() {
|
|||
|
||||
<main className="relative z-10">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden py-20 lg:py-28">
|
||||
<div className="container mx-auto max-w-6xl px-4 text-center">
|
||||
<div className="mx-auto flex max-w-3xl flex-col items-center gap-8">
|
||||
<Badge
|
||||
variant="outline"
|
||||
className="border-green-400/40 bg-green-500/10 text-green-300 shadow-[0_0_20px_rgba(34,197,94,0.2)]"
|
||||
>
|
||||
<img
|
||||
src="https://cdn.builder.io/api/v1/image/assets%2Ffc53d607e21d497595ac97e0637001a1%2Fcd3534c1caa0497abfd44224040c6059?format=webp&width=800"
|
||||
alt="GameForge"
|
||||
className="h-5 w-5 mr-2"
|
||||
/>
|
||||
GameForge
|
||||
</Badge>
|
||||
|
||||
<h1 className="text-4xl font-black tracking-tight text-green-300 sm:text-5xl lg:text-6xl">
|
||||
The Heart of AeThex
|
||||
</h1>
|
||||
|
||||
<p className="text-lg text-green-100/90 sm:text-xl">
|
||||
Month-to-month shipping cycles. Rapid iteration. Continuous
|
||||
delivery. We don't just build games—we build experiences with
|
||||
unstoppable momentum.
|
||||
</p>
|
||||
|
||||
<div className="flex flex-col gap-4 sm:flex-row">
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-green-400 text-black shadow-[0_0_30px_rgba(34,197,94,0.35)] transition hover:bg-green-300"
|
||||
onClick={() => navigate("/gameforge/start-building")}
|
||||
>
|
||||
<Gamepad2 className="mr-2 h-5 w-5" />
|
||||
Start Building
|
||||
</Button>
|
||||
<Button
|
||||
size="lg"
|
||||
variant="outline"
|
||||
className="border-green-400/60 text-green-300 hover:bg-green-500/10"
|
||||
onClick={() => navigate("/gameforge/view-portfolio")}
|
||||
>
|
||||
View Portfolio
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Features Grid */}
|
||||
<section className="border-y border-green-400/10 bg-black/80 py-16">
|
||||
<section className="py-16 lg:py-24">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Zap className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">
|
||||
Monthly Releases
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
Predictable shipping cycles. Every month, new features and
|
||||
improvements live.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Badge className="border-green-400/40 bg-green-500/10 text-green-300 shadow-[0_0_20px_rgba(34,197,94,0.2)] mb-6">
|
||||
<Gamepad2 className="h-4 w-4 mr-2" />
|
||||
GameForge Production
|
||||
</Badge>
|
||||
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Target className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">
|
||||
Rapid Iteration
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
Fast feedback loops. We listen, iterate, and ship what
|
||||
matters.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<div className="space-y-6 mb-12">
|
||||
<h1 className="text-5xl lg:text-7xl font-black text-green-300 leading-tight">
|
||||
Shipping Games Monthly
|
||||
</h1>
|
||||
<p className="text-xl text-green-100/80 max-w-3xl">
|
||||
AeThex GameForge is our internal game production studio. We ship a new game every month using our proprietary development pipeline and tools.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Trophy className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">
|
||||
Quality Driven
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
High standards. Polished experiences. Every release is
|
||||
battle-tested.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-colors">
|
||||
<CardHeader>
|
||||
<Gamepad2 className="h-8 w-8 text-green-400 mb-2" />
|
||||
<CardTitle className="text-green-300">
|
||||
Player First
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<p className="text-sm text-green-200/70">
|
||||
Always focused on player experience. We build what gets
|
||||
played.
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<div className="flex flex-col sm:flex-row gap-4">
|
||||
<Button
|
||||
className="bg-green-400 text-black hover:bg-green-300"
|
||||
onClick={() => navigate("/gameforge/view-portfolio")}
|
||||
>
|
||||
View Recent Releases
|
||||
<ArrowRight className="ml-2 h-4 w-4" />
|
||||
</Button>
|
||||
<Button
|
||||
variant="outline"
|
||||
className="border-green-400/40 text-green-300 hover:bg-green-500/10"
|
||||
onClick={() => navigate("/gameforge/join-gameforge")}
|
||||
>
|
||||
Meet the Team
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* CTA Section */}
|
||||
<section className="py-20 lg:py-28">
|
||||
{/* Production Stats */}
|
||||
<section className="py-12 border-t border-green-400/10 bg-black/40">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<div className="grid md:grid-cols-4 gap-6">
|
||||
{productionStats.map((stat, idx) => (
|
||||
<Card
|
||||
key={idx}
|
||||
className="bg-green-950/30 border-green-400/40"
|
||||
>
|
||||
<CardContent className="pt-6 text-center">
|
||||
<p className="text-3xl font-black text-green-400 mb-2">
|
||||
{stat.value}
|
||||
</p>
|
||||
<p className="text-sm text-green-200/70">{stat.label}</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Upcoming Releases */}
|
||||
<section className="py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-green-300 mb-12 flex items-center gap-2">
|
||||
<Calendar className="h-8 w-8" />
|
||||
Upcoming Releases
|
||||
</h2>
|
||||
<div className="space-y-6">
|
||||
{monthlyReleases.map((release, idx) => (
|
||||
<Card
|
||||
key={idx}
|
||||
className="bg-green-950/20 border-green-400/30 hover:border-green-400/60 transition-all"
|
||||
>
|
||||
<CardContent className="pt-6">
|
||||
<div className="grid md:grid-cols-2 gap-6">
|
||||
<div>
|
||||
<Badge className="bg-green-500/20 text-green-300 border border-green-400/40 mb-3">
|
||||
{release.month}
|
||||
</Badge>
|
||||
<h3 className="text-xl font-bold text-green-300 mb-2">
|
||||
{release.title}
|
||||
</h3>
|
||||
<p className="text-sm text-green-200/70 mb-3">
|
||||
{release.genre}
|
||||
</p>
|
||||
<div className="flex items-center gap-2">
|
||||
<Users className="h-4 w-4 text-green-400" />
|
||||
<span className="text-sm text-green-200/70">
|
||||
{release.team}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<Badge className="bg-green-500/30 text-green-200 border border-green-400/60 mb-3">
|
||||
{release.status}
|
||||
</Badge>
|
||||
<p className="text-sm text-green-200/80">
|
||||
{release.highlights}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Past Releases */}
|
||||
<section className="py-16 border-t border-green-400/10 bg-black/40">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-green-300 mb-12">
|
||||
Shipped This Year
|
||||
</h2>
|
||||
<div className="grid md:grid-cols-3 gap-6">
|
||||
{pastReleases.map((game, idx) => (
|
||||
<Card
|
||||
key={idx}
|
||||
className="bg-green-950/20 border-green-400/30"
|
||||
>
|
||||
<CardContent className="pt-6 space-y-4">
|
||||
<div>
|
||||
<h3 className="text-lg font-bold text-green-300 mb-1">
|
||||
{game.title}
|
||||
</h3>
|
||||
<Badge className="bg-green-500/20 text-green-300 border border-green-400/40 text-xs">
|
||||
{game.genre}
|
||||
</Badge>
|
||||
</div>
|
||||
|
||||
<div className="space-y-2 text-sm text-green-200/70">
|
||||
<p>Released: {game.releaseDate}</p>
|
||||
<p>{game.players} active players</p>
|
||||
<div className="flex items-center gap-2">
|
||||
<span>⭐ {game.rating}/5</span>
|
||||
</div>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Production Process */}
|
||||
<section className="py-16">
|
||||
<div className="container mx-auto max-w-6xl px-4">
|
||||
<h2 className="text-3xl font-bold text-green-300 mb-12">
|
||||
Our Process
|
||||
</h2>
|
||||
<div className="space-y-4">
|
||||
{[
|
||||
{
|
||||
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) => (
|
||||
<Card
|
||||
key={idx}
|
||||
className="bg-green-950/20 border-green-400/30"
|
||||
>
|
||||
<CardContent className="pt-6">
|
||||
<div className="flex items-center gap-6">
|
||||
<div className="h-12 w-12 rounded-lg bg-gradient-to-r from-green-500 to-emerald-500 flex items-center justify-center text-white font-bold flex-shrink-0">
|
||||
{idx + 1}
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<h3 className="font-bold text-green-300 mb-1">
|
||||
{item.phase}
|
||||
</h3>
|
||||
<p className="text-sm text-green-200/70">
|
||||
{item.description}
|
||||
</p>
|
||||
</div>
|
||||
<Badge className="bg-green-500/20 text-green-300 border border-green-400/40">
|
||||
{item.duration}
|
||||
</Badge>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Team CTA */}
|
||||
<section className="py-16 border-t border-green-400/10">
|
||||
<div className="container mx-auto max-w-4xl px-4 text-center">
|
||||
<h2 className="text-4xl font-bold text-green-300 mb-4">
|
||||
Ship With Momentum
|
||||
<h2 className="text-3xl font-bold text-green-300 mb-4">
|
||||
Part of Our Shipping Culture
|
||||
</h2>
|
||||
<p className="text-lg text-green-100/80 mb-8">
|
||||
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.
|
||||
</p>
|
||||
<Button
|
||||
size="lg"
|
||||
className="bg-green-400 text-black shadow-[0_0_30px_rgba(34,197,94,0.35)] hover:bg-green-300"
|
||||
onClick={() => navigate("/gameforge/join-gameforge")}
|
||||
>
|
||||
Join GameForge
|
||||
Meet the Team
|
||||
<ArrowRight className="ml-2 h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
|||
Loading…
Reference in a new issue