Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,6 +46,15 @@ with gr.Blocks(
|
|
46 |
"""
|
47 |
) as demo:
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
# ---------- NEW: info banner ----------
|
50 |
gr.Markdown(
|
51 |
"""
|
@@ -58,13 +67,6 @@ with gr.Blocks(
|
|
58 |
elem_id="info-box",
|
59 |
)
|
60 |
|
61 |
-
# (optional) add a logo or hero image
|
62 |
-
gr.Image(
|
63 |
-
value="https://marcelbinz.github.io/imgs/centaur.png",
|
64 |
-
show_label=False,
|
65 |
-
height=100,
|
66 |
-
elem_classes="mx-auto", # centres the image
|
67 |
-
)
|
68 |
# --------------------------------------
|
69 |
|
70 |
with gr.Row(equal_height=True):
|
|
|
46 |
"""
|
47 |
) as demo:
|
48 |
|
49 |
+
# (optional) add a logo or hero image
|
50 |
+
gr.Image(
|
51 |
+
value="https://marcelbinz.github.io/imgs/centaur.png",
|
52 |
+
show_label=False,
|
53 |
+
height=100,
|
54 |
+
container=False,
|
55 |
+
elem_classes="mx-auto", # centres the image
|
56 |
+
)
|
57 |
+
|
58 |
# ---------- NEW: info banner ----------
|
59 |
gr.Markdown(
|
60 |
"""
|
|
|
67 |
elem_id="info-box",
|
68 |
)
|
69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
# --------------------------------------
|
71 |
|
72 |
with gr.Row(equal_height=True):
|