Ask HN: Landing page best practices and ideas?
In the same vein as the go-to web stack today, how are people creating landing pages?
To start the discussion - I've done a lot of Python and .Net development so my plan is to create a server rendered page with either .Net Core or Flask and roll my own contact form and email collection function.
I see there are a lot of landing page templates, another idea is to check the licensing on them and see if I can stuff them into a jinja2 page and add the functionality I need for submitting a form securely (all I need is email and a few other things).
3 comments
[ 0.21 ms ] story [ 20.7 ms ] threadTemplates are the way to go but even more importantly is the speed at which you can make changes to these templates and to adapt to the context of the customer.
The main focus should be on gathering intelligence so the best stack would be one that you spend the most amount of time to gather as much intelligence as you can and no more. Go with what you’re familiar with and leverage frameworks as much as possible. Your time is precious so avoid mucking about with new/untested tech if you don’t have to.
FWIW, we rolled our own contact and email function based on Django but only to send the data into multiple systems. At one point, we began with Mailchimp and still do for a few forms.
I don't want to get locked into some service or platform that I can't change easily/quickly and I want to make sure it loads as quickly as possible.