Pre-launch Waitlist Page
The waitlist experience keeps interest high while the product is still private. It lives at
/waitlist and uses the minimal layout so the hero headline, consent checkboxes, and social links
stay centered on every screen size.
Where does the submission go?
The submissions are stored in thewaitlists table. You can change this to instead add them to your newsletter. To do that go to Livewire > Forms > Newsletter and uncomment the code that adds them to the newsletter.
$validated = $this->validate();
// replace this
$waitlist = WaitlistModel::create($validated);
// With this
NewsletterMailchimp::subscribeOrUpdate($validated['email']);