diff --git a/main.py b/main.py index 03362b52eb47bbf559c48682ecc3126ab02c34b8..14a2dbdc5a4e8d9261d5e674e5423b851e61a71f 100644 --- a/main.py +++ b/main.py @@ -11,6 +11,15 @@ def home(): workspaces = database.get_workspaces() return render_template("home.html", workspaces = workspaces) +@app.route("/about", methods = ["GET"]) +def about(): + return render_template("about.html") + +@app.route("/contact-us", methods = ["GET"]) +def contact(): + return render_template("contact-us.html") + + @app.route("/map", methods = ["GET"]) def map(): if request.method == "GET":