{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-faq-sections-simple-2-cols-grid","type":"registry:block","title":"Simple 2 Cols Grid","files":[{"path":"components/blocks/marketing/faq-sections/simple-2-cols-grid.tsx","content":"const faqs = [\n  {\n    question: \"Can I cancel at anytime?\",\n    answer:\n      \"Yes, you can cancel anytime no questions are asked while you cancel but we would highly appreciate if you will give us some feedback.\",\n  },\n  {\n    question: \"My team has credits. How do we use them?\",\n    answer:\n      \"Once your team signs up for a subscription plan. This is where we sit down, grab a cup of coffee and dial in the details.\",\n  },\n  {\n    question: \"How does Acme's pricing work?\",\n    answer:\n      \"Our subscriptions are tiered. Understanding the task at hand and ironing out the wrinkles is key.\",\n  },\n  {\n    question: \"How secure is Acme?\",\n    answer:\n      \"Protecting the data you trust to Acme is our first priority. This part is really crucial in keeping the project in line to completion.\",\n  },\n  {\n    question: \"Do you offer discounts?\",\n    answer:\n      \"We've built in discounts at each tier for teams. The time has come to bring those ideas and plans to life.\",\n  },\n  {\n    question: \"What is your refund policy?\",\n    answer:\n      \"We offer refunds. We aim high at being focused on building relationships with our clients and community.\",\n  },\n];\n\nexport default function Simple2ColsGrid() {\n  return (\n    <>\n      {/* FAQ */}\n      <div className=\"max-w-[85rem] container mx-auto px-4 md:px-6 2xl:max-w-[1400px] py-24 lg:py-32\">\n        {/* Title */}\n        <div className=\"max-w-2xl mx-auto text-center mb-10 lg:mb-14\">\n          <h2 className=\"text-2xl font-bold md:text-3xl md:leading-tight\">\n            Frequently Asked Questions\n          </h2>\n        </div>\n        {/* End Title */}\n\n        <div className=\"max-w-5xl mx-auto\">\n          {/* Grid */}\n          <div className=\"grid sm:grid-cols-2 gap-6 md:gap-12\">\n            {faqs.map((faq) => (\n              <div key={faq.question}>\n                <h3 className=\"text-lg font-semibold\">{faq.question}</h3>\n                <p className=\"mt-2 text-muted-foreground\">{faq.answer}</p>\n              </div>\n            ))}\n          </div>\n          {/* End Grid */}\n        </div>\n      </div>\n      {/* End FAQ */}\n    </>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/faq-sections/simple-2-cols-grid.tsx"}],"description":"A plain two column grid of questions and answers. A compact way to cover many topics at once, ideal for a quick reference block near a page footer."}