Add pricing details to front page
This commit is contained in:
@ -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")
|
||||
|
Reference in New Issue
Block a user