import React, { useState } from 'react'; import { FAQS } from '../constants'; import { ChevronDown, ChevronUp } from 'lucide-react'; const FAQ: React.FC = () => { const [openIndex, setOpenIndex] = useState(0); const toggleFAQ = (index: number) => { setOpenIndex(openIndex === index ? null : index); }; return (
FAQ

We simulated what questions you need answering

Explore quick solutions to common questions. Need more? Feel free to contact our support team.

{FAQS.map((faq, idx) => (
{faq.answer}
))}
); }; export default FAQ;