Update app.py
Browse files
app.py
CHANGED
|
@@ -8,6 +8,15 @@ def main_app():
|
|
| 8 |
with gr.Blocks(css="light_mode_chatter_owl.css") as app:
|
| 9 |
current_mode = gr.State("spoken")
|
| 10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
with gr.Row():
|
| 12 |
# === Sidebar ===
|
| 13 |
with gr.Column(scale=1, min_width=220, elem_id="sidebar"):
|
|
|
|
| 8 |
with gr.Blocks(css="light_mode_chatter_owl.css") as app:
|
| 9 |
current_mode = gr.State("spoken")
|
| 10 |
|
| 11 |
+
with gr.Row():
|
| 12 |
+
# === Static Top Bar (with icons) ===
|
| 13 |
+
gr.Markdown("""
|
| 14 |
+
<div id="top-bar">
|
| 15 |
+
<span id="collapse-left">☰</span>
|
| 16 |
+
<span id="dark-mode-toggle">🌙</span>
|
| 17 |
+
</div>
|
| 18 |
+
""", elem_id="top-bar")
|
| 19 |
+
|
| 20 |
with gr.Row():
|
| 21 |
# === Sidebar ===
|
| 22 |
with gr.Column(scale=1, min_width=220, elem_id="sidebar"):
|