"use client"; import { useState } from "react"; import { cn } from "@/lib/utils"; import { useLocale } from "../i18n"; export function FAQSection() { const { t } = useLocale(); const [openIndex, setOpenIndex] = useState(null); return (

{t.faq.label}

{t.faq.headline}

{t.faq.items.map((faq, i) => (

{faq.answer}

))}
); }