diff --git a/App.py b/App.py
index 91fc789e651ef8796dee1a09a736bfe3aa3f4087..3de95d6b278a218bb16aaef66baf266ef1608208 100644
--- a/App.py
+++ b/App.py
@@ -4,4 +4,8 @@ app = Flask(__name__)
 
 @app.route("/")
 def hello():
-    return "Hello, World!"
\ No newline at end of file
+    return "Hello, World!"
+
+@app.route("/about")
+def about():
+    return "This is the about page"
\ No newline at end of file