The FAQ section uses an accordion component to present answers to common questions in a clean and organized way. This guide explains how to edit the content and manage the list of questions.Documentation Index
Fetch the complete documentation index at: https://docs.getsabo.com/llms.txt
Use this file to discover all available pages before exploring further.
File Location
The main component for this section is located at:Editing the Heading
To change the main title and subtitle of the section, find theFAQ function and edit the text inside the h2 and p tags.
src/components/marketing/faq.tsx
Managing FAQ Items
All questions and answers are managed in thefaqItems array at the top of the file. Each object in the array represents one item in the accordion.
Understanding the faqItems Array
Each object has two simple properties:
The question that appears as the accordion trigger.
The answer that is revealed when the accordion item is opened.
Editing an FAQ Item
To change a question or answer, find the corresponding object in thefaqItems array and modify its properties.
src/components/marketing/faq.tsx