Files
CHIEFSOFT\ameye 063b24d7e2 Fix text
2025-02-14 12:08:01 -05:00

57 lines
1.8 KiB
React
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client'
import React from "react";
import {
Accordion,
AccordionItem,
AccordionItemHeading,
AccordionItemButton,
AccordionItemPanel,
} from "react-accessible-accordion";
const FaqContent = [
{
title: " Efficient Implementation.",
desc: ` We cut down implementation time and costs, ensuring our clients get measurable results from multi-channel campaigns designed for maximum impact and return on investment.`,
expand: "a",
},
{
title: "Innovative.",
desc: `We reject cookie-cutter approaches that splatter the same content in every channel. Instead, our content is carefully crafted for each channel.`,
expand: "b",
},
{
title: "Proprietary Technology.",
desc: `Our proprietary software technology provides a unique edge in this competitive landscape. Its not just about what we do; its about how we do it.`,
expand: "c",
},
];
const Faq = () => {
return (
<div className="accordion-style-two pe-5">
<div className="faq-wrraper">
<Accordion preExpanded={["a"]} allowZeroExpanded>
{FaqContent.map((item, i) => (
<AccordionItem className="card" key={i} uuid={item.expand}>
<AccordionItemHeading className="card-header">
<AccordionItemButton>
<h5 className="mb-0">
<button className="btn btn-link">{item.title}</button>{" "}
</h5>
</AccordionItemButton>
</AccordionItemHeading>
{/* Accordion Heading */}
<AccordionItemPanel className="card-body fadeInUp">
<p>{item.desc}</p>
</AccordionItemPanel>
{/* Accordion Body Content */}
</AccordionItem>
))}
</Accordion>
</div>
</div>
);
};
export default Faq;