import type { FaqEntry } from "../content/types"; interface FaqSectionProps { faq: FaqEntry[]; } export function FaqSection({ faq }: FaqSectionProps) { return (
{faq.map((item) => (
{item.question}

{item.answer}

))}
); }