"""Marketing blueprint - landing pages, public content, SEO/GEO assets. Mounted at root "/" (no url_prefix). Coexists with the legacy /api/* and /app/* blueprints. Routes added incrementally in Phase 2 (Tasks A-2.x). """ from flask import Blueprint marketing_bp = Blueprint('marketing', __name__) # Import routes module so it registers route handlers via decorators from . import routes # noqa: E402,F401