Navigation: [/sitemap.md](/sitemap.md)

---
type: block
category: "faqs"
title: "FAQs 1"
description: "Everything you need to know about our product. Can't find the answer you're looking for? Reach out to our support team."
---

```astro live props={{ name: 'faqs-1' }}
---
import FaqBlock from "@/components/blocks/faqs-1.astro"
---

<FaqBlock
  title="Frequently asked questions"
  description="Everything you need to know about our product. Can't find the answer you're looking for? Reach out to our support team."
  buttons={[
    { label: "Contact support", href: "#", variant: "default" },
    { label: "Documentation", href: "#", variant: "outline" },
  ]}
  faqs={[
    {
      id: "faq-1-1",
      question: "How do I get started with the platform?",
      answer:
        "Sign up for an account, choose a plan that fits your needs, and follow our quick-start guide. You can be up and running in under five minutes.",
    },
    {
      id: "faq-1-2",
      question: "Can I upgrade or downgrade my plan at any time?",
      answer:
        "Yes. You can switch plans whenever you like. Changes take effect at the start of your next billing cycle and any unused credit is prorated.",
    },
    {
      id: "faq-1-3",
      question: "What payment methods do you accept?",
      answer:
        "We accept all major credit cards, PayPal, and bank transfers for annual plans. Enterprise customers can also pay by invoice.",
    },
    {
      id: "faq-1-4",
      question: "Is there a free trial available?",
      answer:
        "Every new account comes with a 14-day free trial with full access to all features. No credit card required to start.",
    },
  ]}
/>
```
