Change the game cards and their pricing plans.
This section controls the list of games and their price plans shown on the home page.
You only edit:
config/games/*.json — which games exist and their prices (one file per game)"Games" in config/messages/en.json and config/messages/es.json — section title and descriptionconfig/games/ (for example config/games/minecraft.json).{
"slug": "minecraft",
"image": "/games/minecraft.png",
"name": "Minecraft",
"features": ["Best Server Hardware", "Instant Setup"],
"plans": [
{ "name": "Basic", "price": 5.99, "features": ["4GB RAM", "2 Core CPU", "20GB NVMe Storage"] },
// ...
]
}image → your game image under public/gamesname → game namefeatures → short list of selling pointsplans → plan names, prices, and feature listsslug → the URL slug for the game page (example: /games/minecraft)You can remove a game by deleting its file, or add a game by copying one file and editing the values.
config/messages/en.json."Games" section:"Games": {
"title": "Level Up Your Gaming Experience",
"description": "Host and play your favorites—from /Minecraft to Hytale and more/..."
}title and description to your English text.config/messages/es.json."Games" section and use the same keys with Spanish text.You do not need extra keys for each game name or plan; those labels come directly from the files in
config/games/.