from flask import Blueprint ui_bp = Blueprint( 'ui', __name__, template_folder='templates', # Path to your HTML templates folder static_folder='static', # Path to your static files folder static_url_path='/ui/static' # URL path to access static files )