This page showcases the Testimonials Section component from your project.
The Testimonials Section displays customer feedback, reviews, or endorsements. It helps build credibility and trust by showcasing positive experiences shared by your users or clients.
Below is an example of how to import and use the Testimonials Section in your code:
// Import the TestimonialsSection component
import { TestimonialsSection } from "@/components/sections/TestimonialsSection";
function HomePage() {
return (
<main>
<TestimonialsSection />
</main>
);
}
export default HomePage;