import { ChevronDown } from 'lucide-react' import { FAQ } from '@/lib/types' import { Card, CardContent } from '@/components/ui/card' interface FAQItemProps { faq: FAQ } export function FAQItem({ faq }: FAQItemProps) { return (
{faq.question}
{faq.answer}
) }