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

---
type: block
category: "faqs"
title: "FAQs 4"
description: "FAQs 4 block example."
---

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

<Faqs4Block
  title="Frequently asked questions"
  faqs={[
    {
      id: "faq-4-1",
      question: "Is my data secure on your platform?",
      answer:
        "Absolutely. We use end-to-end encryption, SOC 2 Type II compliance, and regular third-party security audits to keep your data safe.",
    },
    {
      id: "faq-4-2",
      question: "Can I export my data if I leave?",
      answer:
        "Yes. You can export all of your data at any time in standard formats like CSV and JSON. There is no lock-in.",
    },
    {
      id: "faq-4-3",
      question: "Do you offer an uptime SLA?",
      answer:
        "Paid plans include a 99.9% uptime SLA. Enterprise plans can negotiate higher guarantees with dedicated support.",
    },
    {
      id: "faq-4-4",
      question: "How often do you release new features?",
      answer:
        "We ship updates weekly and publish a detailed changelog so you always know what is new.",
    },
  ]}
/>
```
