diff --git a/app.py b/app.py index f9c5bef..8c92708 100644 --- a/app.py +++ b/app.py @@ -130,6 +130,26 @@ def landing_page(): """Landing Page""" return render_template("landing.html") +@app.route("/about") +def about(): + """Öffentliche Über-uns-Seite""" + return render_template("about.html") + +@app.route("/contact") +def contact(): + """Öffentliche Kontaktseite""" + return render_template("contact.html") + +@app.route("/faq") +def faq(): + """Öffentliche FAQ-Seite""" + return render_template("faq.html") + +@app.route("/help") +def help_page(): + """Öffentliche Hilfeseite""" + return render_template("help.html") + @app.route("/login") def login(): """Startet den Discord-OAuth2-Flow."""