# /app/components/Header.py import gradio as gr from html import escape def build_header(title: str = "Storefront Chatbot", subtitle: str = "Anonymous mode ready"): t = escape(title) s = escape(subtitle) html = f"""
{t}
{s}
""" return gr.HTML(value=html)