'use client'; import { useState } from "react"; import Link from "next/link"; const faqData = [ { question: "How do projects start?", answer: ( <> Begin with our{" "} project intake form . We respond within one business day with next steps. ), }, { question: "What does pricing look like?", answer: "Engagements are scoped per project. Typical builds start in the $25K range.", }, { question: "Do you work with international clients?", answer: "Yes. We operate across US, EU, and APAC time zones.", }, { question: "Can I see your process?", answer: ( <> Check our{" "} Absorb → Amplify → Activate {" "} workflow. ), }, ]; export default function FAQ() { const [activeIndex, setActiveIndex] = useState(null); const toggle = (index: number) => { setActiveIndex(activeIndex === index ? null : index); }; return ( <> {/* HERO */}

Frequently Asked Questions

Everything you need to know before working with us.

{/* ACCORDION */}
{faqData.map((item, index) => (

{item.answer}

))}
); }