This page showcases the Services Section component from your project.
The Services Section highlights the key services you offer. It typically includes a brief description of each service, often accompanied by icons or images to visually represent them.
Below is an example of how to import and use the Services Section in your code:
// Import the ServicesSection component
import { ServicesSection } from "@/components/sections/ServicesSection";
function HomePage() {
return (
<main>
<ServicesSection />
</main>
);
}
export default HomePage;