logo
Get in touch

Home Features

Change the three feature cards under the home hero.

Under the hero you will see three feature cards (for example uptime, DDoS protection, instant setup).

You only edit:

  • config/features.ts — which feature cards exist
  • "Features" in config/messages/en.json and config/messages/es.json — titles and descriptions

Step 1 – Decide how many features you want

  1. Open config/features.ts.
  2. You will see a list similar to:
features: [
  { titleKey: "feature1Title", descriptionKey: "feature1Description" },
  { titleKey: "feature2Title", descriptionKey: "feature2Description" },
  { titleKey: "feature3Title", descriptionKey: "feature3Description" }
],
  • Each line is one card.
  • The titleKey and descriptionKey tell the site which text to use.

To remove a feature, delete one of the lines.
To add a feature, copy a line and change the keys (for example feature4Title / feature4Description).

Step 2 – Change the text in English and Spanish

  1. Open config/messages/en.json.
  2. Find the "Features" section:
"Features": {
  "title": "Reliable Server Hosting for all of your /Favorite games/",
  "feature1Title": "99.99% Uptime Guarantee",
  "feature1Description": "Our servers offer rock-solid stability...",
  "feature2Title": "DDoS Protection",
  "feature2Description": "With enterprise-grade DDoS protection...",
  "feature3Title": "Instant Setup",
  "feature3Description": "Deploy your game server in just seconds..."
}
  1. Change the values on the right to your own English text.
    If you added feature4Title / feature4Description in features.ts, create them here as well.
  2. Open config/messages/es.json.
  3. In the "Features" section, add or edit the same keys with your Spanish text.

The keys ("feature1Title", "feature1Description", etc.) must match what you used in config/features.ts and must exist in both language files.