from flask import Blueprint, render_template, request, jsonify

pages = Blueprint(__name__, "pages")

@pages.route("/home")
def home():
    return render_template("home.html")

@pages.route("/about")
def about():
    return render_template("about.html")
