diff --git a/components/faq.tsx b/components/faq.tsx new file mode 100644 index 0000000..949a1c9 --- /dev/null +++ b/components/faq.tsx @@ -0,0 +1,47 @@ +"use client"; +import { Heading } from "./heading"; +import { Subheading } from "./subheading"; + +export const FAQ = () => { + const faqs = [ + { + question: "Is cold email legal?", + answer: "Yes, 100%. We operate with GDPR-aware processes, ensuring all outreach is compliant, targeted, and includes clear opt-out mechanisms.", + }, + { + question: "How long until results?", + answer: "Typically, you'll see consistent replies within 2-4 weeks. The first 14 days are dedicated to technical setup, warmup, and strategy alignment.", + }, + { + question: "Do you need access to my CRM?", + answer: "It's optional but recommended for seamless lead handoff. We can integrate with HubSpot, Salesforce, Pipedrive, and more.", + }, + { + question: "Do you handle replies / booking?", + answer: "We offer reply handling as an optional add-on for our Growth package, allowing you to focus solely on the closing calls.", + }, + ]; + + return ( +
+ Frequently Asked Questions + + Everything you need to know about our outbound engine. + +
+
+ {faqs.map((faq, index) => ( +
+

+ {faq.question} +

+

+ {faq.answer} +

+
+ ))} +
+
+
+ ); +};