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 descriptionsconfig/features.ts.features: [
{ titleKey: "feature1Title", descriptionKey: "feature1Description" },
{ titleKey: "feature2Title", descriptionKey: "feature2Description" },
{ titleKey: "feature3Title", descriptionKey: "feature3Description" }
],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).
config/messages/en.json."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..."
}feature4Title / feature4Description in features.ts, create them here as well.config/messages/es.json."Features" section, add or edit the same keys with your Spanish text.The keys (
"feature1Title","feature1Description", etc.) must match what you used inconfig/features.tsand must exist in both language files.