{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "faqs-1",
  "description": "Elegant FAQ section with accordion-style questions, smooth transitions, and clear support call-to-action.",
  "registryDependencies": [
    "accordion"
  ],
  "files": [
    {
      "path": "registry/blocks/faqs/1/faqs-section.tsx",
      "content": "import {\n  Accordion,\n  AccordionContent,\n  AccordionItem,\n  AccordionTrigger,\n} from \"@/components/ui/accordion\";\n\nexport function FaqsSection() {\n  return (\n    <div className=\"mx-auto w-full max-w-3xl space-y-7 px-4 pt-16\">\n      <div className=\"space-y-2\">\n        <h2 className=\"font-semibold text-3xl md:text-4xl\">\n          Frequently Asked Questions\n        </h2>\n        <p className=\"max-w-2xl text-muted-foreground\">\n          Here are some common questions and answers that you might encounter\n          when using Freddy. If you don't find the answer you're looking for,\n          feel free to reach out.\n        </p>\n      </div>\n      <Accordion\n        className=\"-space-y-px w-full rounded-lg bg-card shadow dark:bg-card/50\"\n        collapsible\n        defaultValue=\"item-1\"\n        type=\"single\"\n      >\n        {questions.map((item) => (\n          <AccordionItem\n            className=\"relative border-x first:rounded-t-lg first:border-t last:rounded-b-lg last:border-b\"\n            key={item.id}\n            value={item.id}\n          >\n            <AccordionTrigger className=\"px-4 py-4 text-[15px] leading-6 hover:no-underline\">\n              {item.title}\n            </AccordionTrigger>\n            <AccordionContent className=\"px-4 pb-4 text-muted-foreground\">\n              {item.content}\n            </AccordionContent>\n          </AccordionItem>\n        ))}\n      </Accordion>\n      <p className=\"text-muted-foreground\">\n        Can't find what you're looking for? Contact our{\" \"}\n        <a className=\"text-primary hover:underline\" href=\"#\">\n          customer support team\n        </a>\n      </p>\n    </div>\n  );\n}\n\nconst questions = [\n  {\n    id: \"item-1\",\n    title: \"What is Freddy?\",\n    content:\n      \"Freddy is a collection of beautifully crafted Shadcn UI blocks and components, designed to help developers build modern websites with ease.\",\n  },\n  {\n    id: \"item-2\",\n    title: \"Who can benefit from Freddy?\",\n    content:\n      \"Freddy is built for founders, product teams, and agencies that want to accelerate idea validation and delivery.\",\n  },\n  {\n    id: \"item-3\",\n    title: \"What features does Freddy include?\",\n    content:\n      \"Freddy offers a collaborative workspace where you can design and build beautiful web applications, with reusable UI blocks, deployment automation, and comprehensive analytics all in one place. With Freddy, you can streamline your team’s workflow and deliver high-quality websites quickly and efficiently.\",\n  },\n  {\n    id: \"item-4\",\n    title: \"Can I customize components in Freddy?\",\n    content:\n      \"Yes. Freddy offers editable design systems and code scaffolding so you can tailor blocks to your brand and workflow.\",\n  },\n  {\n    id: \"item-5\",\n    title: \"Does Freddy integrate with my existing tools?\",\n    content:\n      \"Freddy connects with popular source control, design tools, and cloud providers to fit into your current stack.\",\n  },\n  {\n    id: \"item-6\",\n    title: \"How do I get support while using Freddy?\",\n    content:\n      \"You can access detailed docs, community forums, and dedicated customer success channels for help at any time.\",\n  },\n  {\n    id: \"item-7\",\n    title: \"How do I get started with Freddy?\",\n    content:\n      \"You can access detailed docs, community forums, and dedicated customer success channels for help at any time.\",\n  },\n];\n",
      "type": "registry:component"
    }
  ],
  "categories": [
    "faqs"
  ],
  "type": "registry:block"
}