FAQ Page
FAQ Page Hero
To customize the data in the Hero section, you can modify the following properties in the components/shared/PageHero.jsx
file in the app/faq/page.jsx
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": [
{
"id": 1,
"type": ["general", "changelog"],
"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 arrray in FAQData
. also you have to add that category on the app/faq/page.jsx
file. add the type in the following paramemter.
const categories = ['general', 'changelog', 'terms']