Spaces:
Paused
Paused
Alexandre Piche commited on
Commit ·
7381ebe
1
Parent(s): c588d46
fix header
Browse files
app.py
CHANGED
|
@@ -250,6 +250,22 @@ def upload_file(files):
|
|
| 250 |
|
| 251 |
demo = gr.Blocks()
|
| 252 |
with demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 253 |
gr.HTML(TITLE)
|
| 254 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 255 |
|
|
|
|
| 250 |
|
| 251 |
demo = gr.Blocks()
|
| 252 |
with demo:
|
| 253 |
+
with gr.Row():
|
| 254 |
+
gr.HTML("""
|
| 255 |
+
<div style="display: flex; justify-content: flex-start; align-items: center; padding: 15px 0; border-bottom: 1px solid
|
| 256 |
+
#eaeaea; width: 100%;">
|
| 257 |
+
<div>
|
| 258 |
+
<a href="https://financebench.ai/hello-world/" target="_self" style="text-decoration: none; color: inherit; font-weight: bold; font-size: 24px; margin-right: 40px;">
|
| 259 |
+
FinanceBench.ai
|
| 260 |
+
</a>
|
| 261 |
+
</div>
|
| 262 |
+
<div style="display: flex; gap: 25px;">
|
| 263 |
+
<a href="https://financebench.ai/hello-world/" target="_self" style="text-decoration: none; color: inherit; font-weight: 500;">HOME</a>
|
| 264 |
+
<a href="https://huggingface.co/spaces/financebench/leaderboard" target="_self" style="text-decoration: none; color: inherit; font-weight: 500;">LEADERBOARD</a>
|
| 265 |
+
<a href="https://financebench.ai/get-started/" target="_self" style="text-decoration: none; color: inherit; font-weight: 500;">GET STARTED</a>
|
| 266 |
+
</div>
|
| 267 |
+
</div>
|
| 268 |
+
""")
|
| 269 |
gr.HTML(TITLE)
|
| 270 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 271 |
|