'use client' import React from "react"; import { Accordion, AccordionItem, AccordionItemHeading, AccordionItemButton, AccordionItemPanel, } from "react-accessible-accordion"; const FaqContent = [ { title: " Register and create your first seller portal.", desc: ` It only takes 5 minutes. Set-up is smooth & simple, with fully customisable page design to reflect your brand lorem dummy.`, expand: "a", }, { title: "Manage your client easily", desc: ` It only takes 5 minutes. Set-up is smooth & simple, with fully customisable page design to reflect your brand lorem dummy.`, expand: "b", }, { title: "Start selling ticket", desc: ` It only takes 5 minutes. Set-up is smooth & simple, with fully customisable page design to reflect your brand lorem dummy.`, expand: "c", }, ]; const Faq = () => { return (
{FaqContent.map((item, i) => (
{" "}
{/* Accordion Heading */}

{item.desc}

{/* Accordion Body Content */}
))}
); }; export default Faq;