{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "faq-14",
  "title": "FAQ 14",
  "description": "A simple FAQ block",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "accordion"
  ],
  "files": [
    {
      "path": "src/registry/blocks/radix/faq-14/components/faq.tsx",
      "content": "import {\n  CircleDollarSign,\n  Clock,\n  Package,\n  PackageX,\n  Plane,\n  Waypoints,\n} from \"lucide-react\";\nimport { cn } from \"@/lib/utils\";\nimport {\n  Accordion,\n  AccordionContent,\n  AccordionItem,\n  AccordionTrigger,\n} from \"@/registry/bases/radix/ui/accordion\";\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    icon: Package,\n  },\n  {\n    question: \"How long does shipping take?\",\n    answer:\n      \"Shipping typically takes 3-7 business days depending on your location.\",\n    icon: Clock,\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    icon: Plane,\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    icon: Waypoints,\n  },\n  {\n    question: \"What payment methods do you accept?\",\n    answer: \"We accept all major credit cards, PayPal, UPI, and net banking.\",\n    icon: CircleDollarSign,\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    icon: PackageX,\n  },\n];\n\nconst FAQ = () => {\n  return (\n    <div className=\"mx-auto max-w-2xl px-6 py-12 sm:py-14\">\n      <h2 className=\"text-balance font-medium text-4xl/[1.3] tracking-[-0.04em]\">\n        Got Questions? We've Got Answers\n      </h2>\n      <p className=\"mt-2.5 text-balance text-lg text-muted-foreground tracking-normal\">\n        Everything you need to know about ordering, shipping, and returns.\n      </p>\n\n      <div className=\"mx-auto mt-8 max-w-2xl\">\n        <Accordion collapsible defaultValue={faqs[0].question} type=\"single\">\n          {faqs.map((faq, index) => (\n            <AccordionItem\n              className=\"border not-last:border-b-0 bg-muted/35 last:border-b\"\n              key={`${faq.question}-${index}`}\n              value={faq.question}\n            >\n              <AccordionTrigger className=\"rounded-none px-5 py-0 ps-0 text-base data-[state=open]:border-b\">\n                <div className=\"flex gap-2 divide-x\">\n                  <div\n                    className={cn(\n                      \"flex items-center justify-center bg-muted/40 bg-size-[10px_10px] bg-fixed px-4\",\n                      {\n                        \"bg-[repeating-linear-gradient(315deg,color-mix(in_srgb,var(--border)_30%,transparent)_0,color-mix(in_srgb,var(--border)_30%,transparent)_1px,transparent_0,transparent_50%)]\":\n                          index % 2 === 0,\n                        \"bg-[repeating-linear-gradient(45deg,color-mix(in_srgb,var(--border)_30%,transparent)_0,color-mix(in_srgb,var(--border)_30%,transparent)_1px,transparent_0,transparent_50%)]\":\n                          index % 2 !== 0,\n                      }\n                    )}\n                  >\n                    <faq.icon className=\"size-5 fill-foreground/7\" />\n                  </div>\n                  <span className=\"py-3.5 pl-2.5\">{faq.question}</span>\n                </div>\n              </AccordionTrigger>\n              <AccordionContent className=\"relative bg-background px-5 py-5 pl-18 text-base text-foreground/75\">\n                {faq.answer}\n                <div className=\"absolute inset-y-0 left-13 border-foreground/10 border-s border-dashed\" />\n              </AccordionContent>\n            </AccordionItem>\n          ))}\n        </Accordion>\n      </div>\n    </div>\n  );\n};\n\nexport default FAQ;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}