{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "faq-13",
  "title": "FAQ 13",
  "description": "A simple FAQ block",
  "files": [
    {
      "path": "src/registry/blocks/shared/faq-13/components/faq.tsx",
      "content": "import { cn } from \"@/lib/utils\";\n\nconst faqs = [\n  {\n    question: \"What is your return policy?\",\n    answer:\n      \"We offer a 30-day return policy on all unused products. Please ensure the item is in original packaging when returning.\",\n  },\n  {\n    question: \"How long does shipping take?\",\n    answer:\n      \"Shipping typically takes 3-7 business days depending on your location.\",\n  },\n  {\n    question: \"Do you ship internationally?\",\n    answer:\n      \"Yes, we ship to most countries worldwide. Shipping fees and delivery times vary by destination.\",\n  },\n  {\n    question: \"How can I track my order?\",\n    answer:\n      \"After your order is shipped, you'll receive an email with a tracking link. You can also track your order in your account dashboard.\",\n  },\n  {\n    question: \"What payment methods do you accept?\",\n    answer: \"We accept all major credit cards, PayPal, UPI, and net banking.\",\n  },\n  {\n    question: \"Can I cancel or change my order?\",\n    answer:\n      \"Yes, you can cancel or modify your order within 2 hours of placing it. After that, the order may already be processed for shipment.\",\n  },\n  {\n    question: \"Is my personal information secure?\",\n    answer:\n      \"Yes, we use industry-standard encryption to ensure your personal and payment information is secure.\",\n  },\n  {\n    question: \"Do you offer customer support?\",\n    answer:\n      \"Absolutely. Our support team is available 24/7 via email and chat to help with any issues or questions.\",\n  },\n  {\n    question: \"What payment methods do you accept?\",\n    answer: \"We accept all major credit cards, PayPal, UPI, and net banking.\",\n  },\n  {\n    question: \"Can I cancel or change my order?\",\n    answer:\n      \"Yes, you can cancel or modify your order within 2 hours of placing it. After that, the order may already be processed for shipment.\",\n  },\n];\n\nexport default function FAQ() {\n  return (\n    <div className=\"mx-auto max-w-(--breakpoint-lg) px-6 py-14\">\n      <h2 className=\"mt-5 max-w-4xl text-balance font-medium text-4xl leading-[1.1] tracking-[-0.04em]\">\n        Frequently Asked Questions\n      </h2>\n      <p className=\"mt-2 text-lg text-muted-foreground sm:text-xl\">\n        Find answers to common questions about our products and services.\n      </p>\n\n      <div className=\"mt-8 grid grid-cols-1 gap-1 rounded-lg border border-border/75 bg-muted p-0.75 md:grid-cols-2\">\n        {faqs.map((faq, index) => (\n          <div\n            className={cn(\n              \"relative overflow-hidden border border-border/90 bg-background text-start\",\n              \"first:rounded-t-md last:rounded-b-md md:nth-[2]:rounded-tr-md md:nth-last-[2]:rounded-bl-md md:last:rounded-bl-none md:first:rounded-tr-none\"\n            )}\n            key={index}\n          >\n            <div className=\"isolate\">\n              <span className=\"absolute top-0 left-0 rounded-br-md border-border/50 border-e border-b bg-muted px-2 py-0.75 font-mono text-[11px]\">\n                {(index + 1).toString().padStart(2, \"0\")}\n              </span>\n              <div className=\"flex items-center gap-2 border-b border-dashed px-6 py-3 ps-11 font-medium text-base\">\n                {faq.question}\n              </div>\n              <div className=\"px-6 py-5 ps-11 text-start text-foreground/70 text-sm\">\n                {faq.answer}\n              </div>\n            </div>\n          </div>\n        ))}\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}