Ask HN: Self hosted Waitlist with Landing page?
7 points ·
surrTurr
·
To see if people would be interested in it, I want to build a little landing page that features some screenshots and has a waiting list (via email) at the bottom.
Are there any services or open source projects for this? Preferably using shadcn/react/supabase. I don't want to reinvent the wheel here.
codegeek ·1 days ago
Respectfully, you don't need supabase for a landing page with waitlist especially when you don't want to reinvest the wheel. You have several options:
1. Find a WordPress theme that has the form built in. The fastest out of the box setup you will find.
2. If you don't want WordPress, then there are plenty of static HTML templates you can find. Just google "Landing Page Templates with Waitlist". One example for you [0]
For Option 2, you can connect the form to an existing API from any email provider like mailchimp, loops, etc. If you want to self host, you can get something like sendy [1] or listmonk [2]
[0] https://cruip.com/demos/waitlist/
[1] https://sendy.co/ (PHP Based)
[2] https://listmonk.app (Golang based)
codingdave ·1 days ago
Show replies
pestaa ·1 days ago
I've built my fair share of 'coming soon' pages, and it was never a good use of time.
quintes ·11 hours ago
A Google form
beretguy ·1 days ago
<form method="post">
</form>And then store it in database on a server.
You can get it working with PHP on FortRabbit in less than an hour.
Show replies