This page showcases the Clients Section component from your project.
The Clients Section highlights the logos or testimonials of companies or individuals who have used your service. It builds credibility and trust with your audience.
Below is an example of how to import and use the Clients Section in your code:
// Import the ClientsSection component
import { ClientsSection } from "@/components/sections/ClientsSection";
function HomePage() {
return (
<main>
<ClientsSection />
</main>
);
}
export default HomePage;