{
  "name": "faq/accordion",
  "type": "registry:component",
  "description": "FAQ section combining Accordion component",
  "files": [
    {
      "path": "example/FAQ/SectionFaq_Accordion.astro",
      "type": "registry:component",
      "content": "---\nimport Accordion from '@@/components/ui/Accordion.astro';\nimport BackgroundEffect from '@@/components/ui/BackgroundEffect.astro';\n---\n\n<section class=\"faq-section relative\">\n  <BackgroundEffect\n    gradientType=\"var(--gradient-top-fade-linear)\"\n    patternType=\"none\"\n    noiseType=\"none\"\n  />\n\n  <div class=\"container flex flex-col items-center px-0 md:px-4\">\n    <div class=\"mb-10 px-4 text-center md:mb-12\">\n      <div\n        class=\"rounded-card mb-4 inline-flex items-center gap-2 px-4 py-2 text-sm\"\n        data-scheme=\"shift\"\n\n      >\n        <span class=\"bg-accent h-2 w-2 rounded-full\"></span>\n        FAQ\n      </div>\n      <h2 class=\"h2 mb-4\">\n        Frequently Asked Questions\n      </h2>\n      <p\n        class=\"text-fg-sub mx-auto max-w-3xl text-lg md:text-xl\"\n\n      >\n        Everything you need to know about Pablo\n      </p>\n    </div>\n\n    <div class=\"flex w-full max-w-3xl flex-col\">\n      <Accordion name=\"faq\">\n        <Fragment slot=\"trigger\"\n          >How fast can I build a website with Pablo?</Fragment\n        >\n        <Fragment slot=\"content\">\n          <p>\n            Launch in minutes, not days. Pablo's AI generates professional\n            designs instantly—no coding required. Go from idea to live site\n            faster than ever.\n          </p>\n        </Fragment>\n      </Accordion>\n\n      <Accordion name=\"faq\">\n        <Fragment slot=\"trigger\"\n          >What makes Pablo different from other builders?</Fragment\n        >\n        <Fragment slot=\"content\">\n          <p>\n            Pablo auto-syncs with your GitHub repositories, keeping your site\n            always up-to-date. While others require manual updates, Pablo\n            intelligently refreshes content as your project evolves.\n          </p>\n        </Fragment>\n      </Accordion>\n\n      <Accordion name=\"faq\">\n        <Fragment slot=\"trigger\">What's included in the free plan?</Fragment>\n        <Fragment slot=\"content\">\n          <p>\n            Start with our Hobby plan: 2-week Pro trial, limited agent requests,\n            and tab completions. Perfect for testing Pablo's power before\n            scaling up.\n          </p>\n        </Fragment>\n      </Accordion>\n    </div>\n  </div>\n</section>\n"
    }
  ],
  "category": "example",
  "registryDependencies": [
    "accordion"
  ]
}