logo
Get in touch

Hardware List

Change the server configurations shown on the Hardware page.

The Hardware page shows a table of server configurations (city, CPU, RAM, storage, bandwidth).

You only edit:

  • config/hardware.ts — the list of servers
  • "Hardware" in config/messages/en.json and config/messages/es.json — section texts and labels

Step 1 – Edit the list of servers

  1. Open config/hardware.ts.
  2. You will see a list of servers:
servers: [
  {
    countryCode: "US",
    city: "New York",
    country: "United States",
    cpuType: "Intel",
    cpu: "Xeon E5-2697 v4",
    ramType: "DDR4",
    storage: "4 x 2TB NVMe SSD",
    bandwidth: "10 Gbps",
  },
  // more servers...
],
  1. For each server, change:
  • city and country — where the server is.
  • cpuType and cpu — CPU details.
  • ramType — RAM type (used as a filter).
  • storage — storage description.
  • bandwidth — network speed.

To add a new server:

  1. Copy an existing server object.
  2. Paste it below and change the values to match your hardware.

Step 2 – Change Hardware texts and labels (multi‑language)

  1. Open config/messages/en.json.
  2. Find the "Hardware" section.
  3. Change:
  • "title" and "description" — top of the Hardware page.
  • "hardwareServersTitle" and "hardwareServersDescription" — text above the server list.
  • "countryFilterLabel", "cpuFilterLabel", "ramFilterLabel" — labels of the filters.
  • "specCpu", "specRam", "specStorage", "specBandwidth" — labels in the details.
  • "noServersFound" — message when filters return nothing.
  1. Open config/messages/es.json.
  2. In the "Hardware" section, use the same keys with Spanish text.

The keys must match across both language files. Only change the sentences on the right.