Waitlists

BuilderKit provides a completely modular pre-built waitlist page which you can use with any color scheme (theme).

You can find the Waitlist Page in src/app/waitlist/page.tsx in the main branch.

You can also go to Preview (opens in a new tab) to test it out live.

How to use?

Simply import the Waitlist Page by passing the color scheme prop for the theme as shown below:

import WaitlistComponent from '@/components/Waitlist';
 
const purpleTheme = {
    bg: '#1A1423',
    input: '#241735',
    button: '#774C60E5',
    border: '#856D78',  // Optional
    dark: true,
};
 
export default async function Waitlist() {
    return <WaitlistComponent colorScheme={purpleTheme} />
}