logo
Get in touch

FAQ

Change the list of frequently asked questions.

The FAQ (Frequently Asked Questions) page shows a list of common questions and answers.

You will edit:

  • config/faq.ts — which questions are used
  • "Faq" in config/messages/en.json and config/messages/es.json — the texts

Step 1 – Control which questions are shown

  1. Open config/faq.ts.
  2. You will see a list like:
items: [
  { questionKey: "question1", answerKey: "answer1" },
  { questionKey: "question2", answerKey: "answer2" },
  // ...
],

Each line points to one question and one answer in the translation files.

  • To remove a question, delete that line.
  • To reorder questions, move the lines up or down.
  • To add a question, copy a line and change the keys (for example question7 / answer7).

Step 2 – Edit the questions and answers (multi‑language)

  1. Open config/messages/en.json.
  2. Find the "Faq" section:
"Faq": {
  "title": "Frequently Asked Questions",
  "description": "Clear answers about setup, performance, billing, and support before you deploy.",
  "question1": "How long does it take to deploy my server?",
  "answer1": "Most servers are ready in under 60 seconds...",
  "question2": "What happens if my server gets attacked?",
  "answer2": "All plans include network-level DDoS mitigation...",
  // ...
}
  1. Change the title and description at the top if you want.
  2. For each questionX / answerX key:
  • Replace the text with your own English question and answer.
  1. Open config/messages/es.json.
  2. In the "Faq" section, make sure the same keys exist and set your Spanish versions of each question and answer.

The keys you use in config/faq.ts (for example question3 / answer3) must exist in both language files.