import { PlusSigns } from "@/components/icons/plus-signs"; import Testimonials from "@/components/sections/testimonials"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "@/components/ui/accordion"; import { Card, CardContent, CardHeader } from "@/components/ui/card"; const FAQ_ITEMS = [ { category: "SUPPORT", items: [ { question: "Is there a free version?", answer: "Yes! We offer a generous free plan with just enough features except that one feature you really want! Our strategy is to get your credit card details on file then steadily double our prices against inflation rates.", }, { question: "How do I update my account without breaking my laptop?", answer: "Our platform is designed with safety in mind. You can update your account settings through our intuitive dashboard without any risk to your hardware. We have multiple safeguards in place to prevent any system conflicts.", }, { question: "Is support free, or do I need to Google everything?", answer: "We provide comprehensive support at no additional cost. Our dedicated support team is available 24/7 to help you with any questions or issues you might encounter. No need to rely on Google - we're here to help!", }, { question: "Are you going to be subsumed by AI?", answer: "While we embrace AI technology to enhance our services, we maintain a strong human element in our operations. Our team works alongside AI to provide the best possible service while ensuring human oversight and decision-making remain central to our operations.", }, ], }, { category: "YOUR ACCOUNT", items: [ { question: "Is support free, or do I need to Google everything?", answer: "We provide comprehensive support at no additional cost. Our dedicated support team is available 24/7 to help you with any questions or issues you might encounter. No need to rely on Google - we're here to help!", }, { question: "Are you going to be subsumed by AI?", answer: "While we embrace AI technology to enhance our services, we maintain a strong human element in our operations. Our team works alongside AI to provide the best possible service while ensuring human oversight and decision-making remain central to our operations.", }, ], }, { category: "OTHER QUESTIONS", items: [ { question: "Is support free, or do I need to Google everything?", answer: "We provide comprehensive support at no additional cost. Our dedicated support team is available 24/7 to help you with any questions or issues you might encounter. No need to rely on Google - we're here to help!", }, { question: "Are you going to be subsumed by AI?", answer: "While we embrace AI technology to enhance our services, we maintain a strong human element in our operations. Our team works alongside AI to provide the best possible service while ensuring human oversight and decision-making remain central to our operations.", }, ], }, ]; export default function FAQPage() { return ( <>

Frequently Asked Questions

Everything you need to know about Charter

{FAQ_ITEMS.map((category) => (

{category.category}

{category.items.map((item, i) => ( {item.question} {item.answer} ))}
))}
); }