Update app.py
Browse files
app.py
CHANGED
|
@@ -12,7 +12,12 @@ def main_app():
|
|
| 12 |
with gr.Row():
|
| 13 |
# === Sidebar ===
|
| 14 |
with gr.Column(scale=1, min_width=220, elem_id="sidebar"):
|
| 15 |
-
gr.Markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
nickname_input = gr.Textbox(value=load_latest_nickname(), label="👤 Your Nickname", placeholder="Enter your name")
|
| 18 |
nickname_display = gr.Markdown(visible=False)
|
|
|
|
| 12 |
with gr.Row():
|
| 13 |
# === Sidebar ===
|
| 14 |
with gr.Column(scale=1, min_width=220, elem_id="sidebar"):
|
| 15 |
+
gr.Markdown("""
|
| 16 |
+
<div id="brand-header">
|
| 17 |
+
<img src="file/images/chatternest_logo.png" alt="ChatterNest Logo" width="60" style="margin-bottom: 0.5em;">
|
| 18 |
+
<h1>ChatterNest</h1>
|
| 19 |
+
</div>
|
| 20 |
+
""", unsafe_allow_html=True)
|
| 21 |
|
| 22 |
nickname_input = gr.Textbox(value=load_latest_nickname(), label="👤 Your Nickname", placeholder="Enter your name")
|
| 23 |
nickname_display = gr.Markdown(visible=False)
|