Frequently asked questions

Intro

This file contains the Faqs configuration for the application.Here you can set the the flequently asked questions you want to show to the user

In the file @config/faqs.ts you can set the config of the faqs

Example

The next example is the default configuration

export default {
    questions: [
        {
            "question": "How do I register for an Acme account?",
            "answer": "Visit the Acme Company website and click on 'Register' in the top right corner. Complete the registration form and verify your email to activate your account."
        },
        {
            "question": "I can't access my Acme account. What should I do?",
            "answer": "Try resetting your password first. If the issue persists, contact our support team at support@acme.com for assistance."
        },
    ]
}

Usage

Table of Contents