{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "faq1",
  "title": "Faqs",
  "description": "Centered FAQ section with a label, headline, description, and accordion list of questions.",
  "files": [
    {
      "path": "contents/blocks/marketing/faqs/1/index.tsx",
      "content": "import {\n  Accordion,\n  AccordionContent,\n  AccordionItem,\n  AccordionTrigger,\n} from \"@/components/ui/accordion\";\n\nconst faqs = [\n  {\n    question: \"How do I get started with Vitalize?\",\n    answer:\n      \"Getting started is easy. Download the app, create your account, complete a quick fitness assessment, and we'll build a personalized workout plan for you in minutes.\",\n  },\n  {\n    question: \"Are the workouts suitable for beginners?\",\n    answer:\n      \"Absolutely! Vitalize offers programs for all fitness levels, from complete beginners to advanced athletes. Every workout includes difficulty ratings and modification options.\",\n  },\n  {\n    question: \"Do I need any equipment to work out?\",\n    answer:\n      \"No equipment is required for most programs. We offer bodyweight-only workouts as well as programs that use dumbbells, resistance bands, or gym machines.\",\n  },\n  {\n    question: \"Are there any hidden fees?\",\n    answer:\n      \"No hidden fees. Our pricing is fully transparent. You only pay for the plan you choose, and any premium add-ons are clearly listed on our pricing page.\",\n  },\n  {\n    question: \"How is my health data protected?\",\n    answer:\n      \"We take your privacy seriously. All health and fitness data is encrypted at rest and in transit. We comply with GDPR and never sell your personal data to third parties.\",\n  },\n  {\n    question: \"What payment methods do you accept?\",\n    answer:\n      \"We accept all major credit and debit cards, Apple Pay, Google Pay, and PayPal. Annual plans can also be paid via bank transfer.\",\n  },\n];\n\nexport default function FAQSection() {\n  return (\n    <section className=\"w-full\">\n      <div className=\"mx-auto max-w-3xl px-4 py-16 sm:px-6 sm:py-24 lg:px-8\">\n        <div className=\"mb-12 text-center\">\n          <p className=\"mb-3 text-sm font-semibold text-primary\">FAQ</p>\n          <h2 className=\"mb-4 text-4xl font-bold tracking-tight text-foreground sm:text-5xl\">\n            Frequently Asked Questions\n          </h2>\n          <p className=\"mx-auto max-w-xl text-muted-foreground\">\n            We compiled a list of answers to address your most pressing\n            questions regarding our Services.\n          </p>\n        </div>\n\n        <Accordion type=\"single\" collapsible defaultValue=\"item-1\">\n          {faqs.map((faq, index) => (\n            <AccordionItem key={index} value={`item-${index}`}>\n              <AccordionTrigger className=\"text-left text-base font-medium\">\n                {faq.question}\n              </AccordionTrigger>\n              <AccordionContent className=\"text-muted-foreground\">\n                {faq.answer}\n              </AccordionContent>\n            </AccordionItem>\n          ))}\n        </Accordion>\n      </div>\n    </section>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/faq1.tsx"
    }
  ],
  "type": "registry:block"
}