This page showcases the Newsletter Section component from your project.

The Newsletter Section encourages users to subscribe to your mailing list for updates, promotions, or news. It typically includes a call-to-action and a simple form to collect email addresses.
Below is an example of how to import and use the Newsletter Section in your code:
// Import the NewsletterSection component
import { NewsletterSection } from "@/components/sections/NewsletterSection";
function HomePage() {
  return (
    <main>
      <NewsletterSection />
    </main>
  );
}
export default HomePage;