Update app.py
Browse files
app.py
CHANGED
|
@@ -25,17 +25,7 @@ import streamlit as st
|
|
| 25 |
|
| 26 |
IMAGE_PATH = "Problems.png"
|
| 27 |
|
| 28 |
-
st.
|
| 29 |
-
"""
|
| 30 |
-
<div style="display: inline-flex; align-items: center;">
|
| 31 |
-
<!-- The comment below won't be displayed, but is valid HTML -->
|
| 32 |
-
<img src="{0}" alt="logo" style="height: 1.4em; vertical-align: middle;"/>
|
| 33 |
-
<span style="font-size: 1.4em; margin-left: 0.5em;">DubsChat</span>
|
| 34 |
-
</div>
|
| 35 |
-
""".format(IMAGE_PATH),
|
| 36 |
-
unsafe_allow_html=True
|
| 37 |
-
)
|
| 38 |
-
|
| 39 |
|
| 40 |
|
| 41 |
# Utility Functions
|
|
|
|
| 25 |
|
| 26 |
IMAGE_PATH = "Problems.png"
|
| 27 |
|
| 28 |
+
st.logo(IMAGE_PATH)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
|
| 31 |
# Utility Functions
|