This page showcases the How It Works Section component from your project.
The How It Works Section is designed to explain the process or workflow of your product or service. It typically consists of step-by-step instructions or visuals to guide users.
Below is an example of how to import and use the How It Works Section in your code:
// Import the HowItWorksSection component
import { HowItWorksSection } from "@/components/sections/HowItWorksSection";
function HomePage() {
return (
<main>
<HowItWorksSection />
</main>
);
}
export default HomePage;