logo
Get in touch

Locations

Change the text and markers for your server locations.

The locations section shows where your servers are around the world.

You will edit:

  • config/location.ts — the dots on the world map
  • "Locations" in config/messages/en.json and config/messages/es.json — section texts

Step 1 – Edit or add locations on the map

  1. Open config/location.ts.
  2. You will see a list of markers:
markers: [
  {
    id: "us-oregon-mmx44gp5",
    countryCode: "US",
    countryName: "Oregon",
    pos: { x: 0.166992, y: 0.319661 },
  },
  // ...
],
  • countryCode — two‑letter country code (for example US, NL, BR).
  • countryName — the name that appears near the dot.
  • pos — where the dot appears on the map. These values are already set and usually do not need to change.

To add a new location:

  1. Copy an existing marker object.

  2. Paste it below and change:

    • id — any unique text.
    • countryCode — your country code.
    • countryName — city or region name.
  3. Save the file and refresh the page.

Step 2 – Change the locations text (multi‑language)

  1. Open config/messages/en.json.
  2. Find the "Locations" section:
"Locations": {
  "title": "Our Locations",
  "description": "We have servers in /multiple locations/ around the world...",
  "latencyDescription": "Latency measured via browser — results may be inaccurate."
}
  1. Change these sentences to your English text.
  2. Open config/messages/es.json.
  3. In the "Locations" section, use the same keys with Spanish text.

You do not need to create new keys here; just adjust the text so it matches your real infrastructure.