> For the complete documentation index, see [llms.txt](https://phoenixcoded.gitbook.io/saasable/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq1.md).

# Faq1

{% hint style="info" %}
All available props for the Faq1 component are defined and handled within **Component usage path** file. This allows for easy modifications to the content of the faq section.
{% endhint %}

**Component path**: `src/blocks/faq/Faq1.tsx`

**Component usage path:**  `src/app/blocks/faq/faq1/page.tsx`

**Preview link:** [**https://www.saasable.io/blocks/faq/faq1**](https://www.saasable.io/blocks/faq/faq1)

## Props Details

| Prop                | Type                                          | Description                                            | Displayed as                                                                                                     |
| ------------------- | --------------------------------------------- | ------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- |
| **heading**         | `string`                                      | The main title of the FAQ section.                     | `"Frequently Asked Questions"`                                                                                   |
| **caption**         | `string` (Optional)                           | A subtitle or additional context for the FAQ section.  | `"Here you'll find answers to the most common questions we receive."`                                            |
| **defaultExpanded** | `string` (Optional)                           | Controls which FAQ panels are expanded by default.     | `"panel0"` (expands the first panel) or `false` (no panels expanded by default)                                  |
| **faqList**         | `Array<{ question: string, answer: string }>` | List of FAQ items, each with a question and an answer. | `[{ question: "What is your return policy?", answer: "You can return items within 30 days of purchase." }, ...]` |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/faq/faq1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
