Spaces:
Running
Running
Mandark-droid
commited on
Commit
·
4a44e51
1
Parent(s):
c4cc2c2
Add top banner with gradient styling
Browse files
app.py
CHANGED
|
@@ -168,6 +168,26 @@ def generate_insights():
|
|
| 168 |
# Build Gradio app
|
| 169 |
with gr.Blocks(title="TraceMind-AI") as app:
|
| 170 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
# Sidebar Navigation
|
| 172 |
with gr.Sidebar():
|
| 173 |
gr.Markdown("## 🧠 TraceMind")
|
|
|
|
| 168 |
# Build Gradio app
|
| 169 |
with gr.Blocks(title="TraceMind-AI") as app:
|
| 170 |
|
| 171 |
+
# Top Banner
|
| 172 |
+
gr.HTML("""
|
| 173 |
+
<div style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 174 |
+
padding: 25px;
|
| 175 |
+
border-radius: 10px;
|
| 176 |
+
margin-bottom: 20px;
|
| 177 |
+
text-align: center;
|
| 178 |
+
box-shadow: 0 4px 6px rgba(0,0,0,0.1);">
|
| 179 |
+
<h1 style="color: white !important; margin: 0; font-size: 2.5em; font-weight: bold;">
|
| 180 |
+
🧠 TraceMind
|
| 181 |
+
</h1>
|
| 182 |
+
<p style="color: rgba(255,255,255,0.9); margin: 10px 0 0 0; font-size: 1.2em;">
|
| 183 |
+
Agent Evaluation Platform
|
| 184 |
+
</p>
|
| 185 |
+
<p style="color: rgba(255,255,255,0.8); margin: 10px 0 0 0; font-size: 0.9em;">
|
| 186 |
+
Powered by Gradio 6 🚀 | HuggingFace Jobs | MCP Integration
|
| 187 |
+
</p>
|
| 188 |
+
</div>
|
| 189 |
+
""")
|
| 190 |
+
|
| 191 |
# Sidebar Navigation
|
| 192 |
with gr.Sidebar():
|
| 193 |
gr.Markdown("## 🧠 TraceMind")
|