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 textsconfig/faq.ts.items: [
{ questionKey: "question1", answerKey: "answer1" },
{ questionKey: "question2", answerKey: "answer2" },
// ...
],Each line points to one question and one answer in the translation files.
question7 / answer7).config/messages/en.json."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...",
// ...
}title and description at the top if you want.questionX / answerX key:config/messages/es.json."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 examplequestion3/answer3) must exist in both language files.