File size: 543 Bytes
46bca93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# /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"""
    <div style="display:flex;justify-content:space-between;align-items:center;padding:8px 4px 4px;">
      <div>
        <div style="font-weight:700;font-size:20px;color:#0f172a;">{t}</div>
        <div style="font-size:13px;color:#64748b;">{s}</div>
      </div>
    </div>
    """
    return gr.HTML(value=html)