This page showcases the FAQ Section component from your project.
The FAQ Section (Frequently Asked Questions) provides answers to common questions users may have about your product or service. It's a great way to address customer concerns upfront and reduce support inquiries.
Below is an example of how to import and use the FAQ Section in your code:
// Import the FAQSection component
import { FAQSection } from "@/components/sections/FAQSection";
function HomePage() {
return (
<main>
<FAQSection />
</main>
);
}
export default HomePage;