FAQ Section

Section displaying frequently asked questions in an accordion format.

Frequently Asked Questions

What is included in the free plan?

The free plan gives you access to basic features including project creation, limited storage, and community support. You can upgrade at any time for more functionality.

Can I use this tool with my existing workflow?

Absolutely. The system is designed to integrate seamlessly with popular tools like Git, Markdown, and static site generators. No major setup or migration required.

How does team collaboration work?

You can invite team members to your projects, assign roles, and collaborate in real time. Changes are tracked and synced automatically across environments.

What kind of support do you offer?

We offer comprehensive support through documentation, community forums, and email support. Premium plans include priority support with faster response times.

---
import Text from "@core-elements/text/Text.astro";
import FaqSection from "@page-sections/info-blocks/faq-section/FaqSection.astro";
---

<FaqSection backgroundColor="base" heading="Frequently Asked Questions" paddingVertical="4xl" />
---
blocks:
  _component: page-sections/info-blocks/faq-section
  heading: Frequently Asked Questions
  items:
    - title: What is included in the free plan?
      contentSections:
        - _component: building-blocks/core-elements/text
          text: The free plan gives you access to basic features including project creation, limited storage, and community support. You can upgrade at any time for more functionality.
          size: md
    - title: Can I use this tool with my existing workflow?
      contentSections:
        - _component: building-blocks/core-elements/text
          text: Absolutely. The system is designed to integrate seamlessly with popular tools like Git, Markdown, and static site generators. No major setup or migration required.
          size: md
    - title: How does team collaboration work?
      contentSections:
        - _component: building-blocks/core-elements/text
          text: You can invite team members to your projects, assign roles, and collaborate in real time. Changes are tracked and synced automatically across environments.
          size: md
    - title: What kind of support do you offer?
      contentSections:
        - _component: building-blocks/core-elements/text
          text: We offer comprehensive support through documentation, community forums, and email support. Premium plans include priority support with faster response times.
          size: md
  paddingVertical: 4xl
  backgroundColor: base
---

Overview

Use FAQ Section to address common questions and help users find answers quickly. The accordion format keeps content organized and allows users to expand only the questions they're interested in.

Properties

heading string | default: Frequently Asked Questions

Main heading for the FAQ section.

items array | default: array

Questions and answers in the accordion.

Item Properties:

title string | default: Question text

The question text.

contentSections array | default: array

Content sections for the answer (typically text).

paddingVertical enum | default: 4xl

Vertical padding for the section.

Accepted values:
  • none
  • xs
  • sm
  • md
  • lg
  • xl
  • 2xl
  • 3xl
  • 4xl

colorScheme enum | default: inherit

Color scheme theme applied to the section wrapper.

Accepted values:
  • inherit
  • light
  • dark

backgroundColor enum | default: base

Background color for the section.

Accepted values:
  • none
  • base
  • surface
  • accent
  • highlight