Waitlist in 5 minutes
Waitlist landing page is a great way to keep your potential customers engaged. You can use it to collect emails and notify them when the product is ready. This way, you can keep them engaged and interested in your product.
SaaSDay provides numerous templates for waitlist landing pages. You can choose the one that suits your product and customize it according to your needs.
To create a waitlist landing page, open app/(marketing)/page.tsx and add the WaitlistPage component.
<Waitlist1/>
or
<Waitlist2/>
or
<Waitlist3/>
Complete code will be like below:
export default async function IndexPage() {
return (
<>
<Waitlist1/>
{/* <Waitlist2/> */}
{/* <Waitlist3/> */}
</>
);
}
You will get a page like below:
Waitlist component is pre-configured with the Mailchimp to build your list. You can change the MAILCHIMP_API_KEY and other details in .env.local file. For further details please check the Waitlist component docs.
To deploy the waitlist landing page, check the deployment section.
To change Navbar items please check the Navbar component docs.