{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"veil-faqs-1","type":"registry:block","title":"Faqs 1","description":"Tailark Veil faqs variant 1 block","registryDependencies":["@tailark-oss/veil-card","@tailark-oss/veil-accordion"],"meta":{"aspect-ratio":"9/4","width":686,"height":305},"files":[{"path":"veil/blocks/faqs/one.tsx","type":"registry:component","target":"@components/faqs-1.tsx","content":"'use client'\n\nimport { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from '@/components/ui/accordion'\nimport { Card } from '@/components/ui/card'\nimport Link from 'next/link'\n\nconst faqItems = [\n    {\n        id: 'item-1',\n        question: 'How does the free trial work?',\n        answer: 'Start with a 14-day free trial with full access to all features. No credit card required. You can upgrade to a paid plan at any time during or after the trial.',\n    },\n    {\n        id: 'item-2',\n        question: 'Can I change my plan later?',\n        answer: \"Yes, you can upgrade or downgrade your plan at any time. Changes take effect immediately, and we'll prorate the difference.\",\n    },\n    {\n        id: 'item-3',\n        question: 'What payment methods do you accept?',\n        answer: 'We accept all major credit cards, PayPal, and bank transfers for annual plans. Enterprise customers can also pay via invoice.',\n    },\n    {\n        id: 'item-4',\n        question: 'Is there a setup fee?',\n        answer: 'No, there are no setup fees or hidden costs. You only pay for your subscription plan.',\n    },\n    {\n        id: 'item-5',\n        question: 'Do you offer refunds?',\n        answer: \"We offer a 30-day money-back guarantee. If you're not satisfied, contact us within 30 days for a full refund.\",\n    },\n]\n\nexport default function FAQs() {\n    return (\n        <section className=\"bg-background @container py-24\">\n            <div className=\"mx-auto max-w-2xl px-6\">\n                <div className=\"text-center\">\n                    <h2 className=\"text-balance font-serif text-4xl font-medium\">Frequently Asked Questions</h2>\n                    <p className=\"text-muted-foreground mx-auto mt-4 max-w-md text-balance\">Find answers to common questions about our platform.</p>\n                </div>\n                <Card\n                    variant=\"outline\"\n                    className=\"mt-12 p-2\"\n                >\n                    <Accordion\n                        type=\"single\"\n                        collapsible\n                    >\n                        {faqItems.map((item) => (\n                            <AccordionItem\n                                key={item.id}\n                                value={item.id}\n                                className=\"border-b-0 px-4\"\n                            >\n                                <AccordionTrigger className=\"cursor-pointer py-4 text-sm font-medium hover:no-underline\">{item.question}</AccordionTrigger>\n                                <AccordionContent>\n                                    <p className=\"text-muted-foreground pb-2 text-sm\">{item.answer}</p>\n                                </AccordionContent>\n                            </AccordionItem>\n                        ))}\n                    </Accordion>\n                </Card>\n                <p className=\"text-muted-foreground mt-6 text-center text-sm\">\n                    Still have questions?{' '}\n                    <Link\n                        href=\"#\"\n                        className=\"text-primary font-medium hover:underline\"\n                    >\n                        Contact support\n                    </Link>\n                </p>\n            </div>\n        </section>\n    )\n}\n"}]}