Skip to content

Just Ship It

Build and launch your landing page in a couple of minutes

We'll create a beautiful landing page with optional email collection for your waitlist.

  1. First, clone the repo and start the local server. Check out the Get Started guide if you haven't done this yet.

  2. Clear out templates/index.html and add this code:

    templates/index.html
    {% extends 'base.html' %}
    {% load static %}
    
    {% block title %}{{ APP_NAME }}{% endblock %}
    
    {% block content %}
        {% include 'components/hero.html' %}
    
        {% include 'components/problem.html' %}
    
        {% include 'components/features-listicle.html' %}
    
        {% include 'components/pricing.html' %}
    
        {% include 'components/faq.html' %}
    
        {% include 'components/cta.html' %}
    {% endblock content %}
    
  3. Each component includes pre-written copy - check out the components section for guidance. Customize the text to fit your project.

  4. Let's deploy! See here for two simple ways.