Add pricing details to front page

This commit is contained in:
j3s
2020-06-08 18:27:13 -05:00
parent 22f85dcd85
commit dd607b3c9b
3 changed files with 30 additions and 1 deletions

View File

@ -8,6 +8,10 @@ bp = Blueprint("landing", __name__, url_prefix="/")
def index():
return render_template("index.html")
@bp.route("/pricing")
def pricing():
return render_template("pricing.html")
@bp.route("/faq")
def faq():
return render_template("faq.html")
@ -18,4 +22,4 @@ def changelog():
@bp.route("/support")
def support():
return render_template("support.html")
return render_template("support.html")