from flask import Blueprint, render_template home_blueprint: Blueprint = Blueprint("main", __name__) @home_blueprint.route("/") def index(): return render_template("home.html")