"use client" import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "@/components/ui/accordion" import { useTranslations } from "next-intl" export function FaqSection() { const t = useTranslations("home.faq") // We'll hardcode the keys for now to map them const questions = ["q1", "q2", "q3", "q4", "q5"] return (

{t("title")}

{questions.map((key) => ( {t(`${key}.question`)} {t(`${key}.answer`)} ))}
) }