from flask import Blueprint, render_template
billing_bp = Blueprint("billing", __name__, url_prefix="/billing")

@billing_bp.route("/plans")
def plans():
    # Static page for now; wire to Stripe later
    return render_template("plans.html")
