This page showcases the Features Section component from your project.
The Features Section highlights the key features of your product or service, helping users understand its value and benefits. This section is typically used to outline unique selling points.
Below is an example of how to import and use the Features Section in your code:
// Import the FeaturesSection component
import { FeaturesSection } from "@/components/sections/FeaturesSection";
function HomePage() {
return (
<main>
<FeaturesSection />
</main>
);
}
export default HomePage;