// components/pricing/FAQ.tsx export default function FAQ() { const faqs = [ { q: "Do I need to sign a long contract?", a: "No. Plans are month-to-month with a 30-day cancel. We also provide an exit plan and documentation.", }, { q: "What happens if you miss an SLA?", a: "We apply incident credits on your next invoice. Credits scale with the breach severity.", }, { q: "Are you GDPR compliant?", a: "Yes. We sign a DPA, use least-privilege access, and keep an audit log. We provide cookie and privacy pages.", }, { q: "Can you help outside business hours?", a: "Mission-Critical includes 24/7 paging. You can also request ad-hoc after-hours support when needed.", }, ]; return (

Pricing FAQs

{faqs.map((item) => (
{item.q}
{item.a}
))}
); }