Viral whitelists / waitlists for nfts and web3 projects
npm install @zootools/waitlist-js1. Create a new account at: https://waitlistpanda.com/
2. Create a new whitelist https://www.waitlistpanda.com/lists
3. Click "form builder" in the top menu.
4. Click "Embed form".
5. Paste the scripts:
`
1. Create a new account at: https://waitlistpanda.com/
2. Create a new whitelist https://www.waitlistpanda.com/lists
3. Copy the list id (it's part of the url), example: https://www.waitlistpanda.com/lists/234234234234
4. Install this package
`js`
npm install --save @zootools/waitlist-js
`
5. Import the library
js`
import waitlistPanda from "@zootools/waitlist-js";
`
6. Init the library
js`
waitlistPanda.init();
If you are using React, you should prob initialize once the website is fully loaded in the client:
`js
import waitlistPanda from "@zootools/waitlist-js";
import {useEffect} from 'react'
useEffect(() => {
waitlistPanda.init();
}, []);
``