FAQ Page
FAQ Page Hero
To customize the data in the Hero section, you can modify the following properties in the components\Shared\PageHero.vue
file in the pages\faq.vue
and customize the following data:
<PageHero
subtitle="FAQ’S"
title="Frequently asked <br> question"
paragraph="Until recently, the prevailing view assumed lorem ipsum was born as a nonsense text. It's not Latin, though it looks like it"
/>
FAQ data
All the data for the team members are being generated from data/FAQData.json
file. Go, to the file and change the value of the FAQData
. change type
, question
and answer
to update the page
FAQData.json [ { id: 1, type: ["general", "changelog", "terms"], question: "What
is a business agency?", answer: "Until recently, the prevailing view assumed
lorem ipsum was born as a nonsense text. “It's not Latin.", }, ];
You should use only "general", "changelog", "terms"
these categories. if you want to use other categories also. add in type array in FAQData.json
. also you have to add that category on the pages\faq.vue
file. add the type in the following parameters.
const categories = ["general", "changelog", "terms"];