{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "faqs-2",
  "description": "Split-screen FAQ layout with bordered sections, interactive accordion, and a clean call-to-action footer.",
  "registryDependencies": [
    "accordion"
  ],
  "files": [
    {
      "path": "registry/blocks/faqs/2/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 min-h-screen w-full max-w-5xl lg:border-x\">\n      <div className=\"mx-4 grid h-[calc(100vh-3.5rem)] grid-cols-1 border-x md:mx-0 md:grid-cols-2 md:border-x-0\">\n        <div className=\"space-y-4 px-4 pt-12 pb-4 md:border-r\">\n          <h2 className=\"font-black text-3xl md:text-4xl\">FAQs</h2>\n          <p className=\"text-muted-foreground\">\n            Here are some common questions and answers that you might encounter\n            when using Freddy.\n          </p>\n        </div>\n        <div className=\"place-content-center\">\n          <Accordion collapsible defaultValue=\"item-1\" type=\"single\">\n            {questions.map((item) => (\n              <AccordionItem\n                className=\"first:border-t last:border-b data-[state=open]:bg-card\"\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        </div>\n      </div>\n      <div className=\"flex h-14 items-center justify-center border-t\">\n        <p className=\"text-muted-foreground\">\n          Can't find what you're looking for?{\" \"}\n          <a className=\"text-primary hover:underline\" href=\"#\">\n            Contact Us\n          </a>\n        </p>\n      </div>\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"
}