diff --git a/app.py b/app.py index 65eecd0..338e75a 100644 --- a/app.py +++ b/app.py @@ -108,6 +108,26 @@ def login(): session['oauth_state'] = state return redirect(authorization_url) +@app.route("/about") +def about(): + """Zeigt eine öffentliche Über uns Seite an.""" + return render_template("about.html") + +@app.route("/contact") +def contact(): + """Zeigt eine öffentliche Kontaktseite an.""" + return render_template("contact.html") + +@app.route("/faq") +def faq(): + """Zeigt eine öffentliche FAQ Seite an.""" + return render_template("faq.html") + +@app.route("/help") +def help_page(): + """Zeigt eine öffentliche Hilfeseite an.""" + return render_template("help.html") + @app.route("/callback") def callback(): """Verarbeitet den OAuth2-Rückruf von Discord.""" diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..c52ca85 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,22 @@ + + + + + + About Us + + + + + +
+

About Us

+

Welcome to Multus Bot, the AI-powered Discord bot created by SimolZimol. We aim to make managing Discord servers easier with AI tools and advanced functionalities.

+
+ + diff --git a/templates/contact.html b/templates/contact.html new file mode 100644 index 0000000..bf38c8a --- /dev/null +++ b/templates/contact.html @@ -0,0 +1,22 @@ + + + + + + Contact Us + + + + + +
+

Contact Us

+

If you have any questions or need support, feel free to contact us at support@multusbot.com.

+
+ + diff --git a/templates/faq.html b/templates/faq.html new file mode 100644 index 0000000..c79b40b --- /dev/null +++ b/templates/faq.html @@ -0,0 +1,27 @@ + + + + + + FAQ + + + + + +
+

Frequently Asked Questions (FAQ)

+

Find answers to the most commonly asked questions about the Multus Bot.

+ +
+ + diff --git a/templates/help.html b/templates/help.html new file mode 100644 index 0000000..deec544 --- /dev/null +++ b/templates/help.html @@ -0,0 +1,26 @@ + + + + + + Help + + + + + +
+

Help Center

+

Need help? Here are some resources to get you started with Multus Bot.

+ +
+ +