'use client'; import { HelpCircle } from 'lucide-react'; import { Accordion, Accordions } from '@/mdx-components'; export interface FaqItem { question: string; answer: string; } interface FaqSectionProps { faq: FaqItem[]; } export function FaqSection({ faq }: FaqSectionProps) { if (!faq || faq.length === 0) return null; return (