logo
Get in touch

Games and Pricing

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 description

Step 1 – Edit games and plans

  1. Open any file inside config/games/ (for example config/games/minecraft.json).
  2. Each file represents one game card:
{
  "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"] },
    // ...
  ]
}
  1. For each game, change:
  • image → your game image under public/games
  • name → game name
  • features → short list of selling points
  • plans → plan names, prices, and feature lists
  • slug → 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.

Step 2 – Change the section title and description (multi‑language)

  1. Open config/messages/en.json.
  2. Find the "Games" section:
"Games": {
  "title": "Level Up Your Gaming Experience",
  "description": "Host and play your favorites—from /Minecraft to Hytale and more/..."
}
  1. Change title and description to your English text.
  2. Open config/messages/es.json.
  3. Find the "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/.