Update app.py
Browse files
app.py
CHANGED
@@ -52,17 +52,13 @@ st.sidebar.markdown("""
|
|
52 |
# Rhazes Lab and Mayo Clinic Logos
|
53 |
st.sidebar.markdown("\n\n")
|
54 |
# Create a two-column layout for logos and text
|
55 |
-
col1
|
56 |
|
57 |
# Logo and text for My Logo Lab
|
58 |
-
url_logo_lab = "images/rhazes_lab_logo.png"
|
59 |
-
with col1:
|
60 |
-
st.image(url_logo_lab, width=100)
|
61 |
-
# Logo and text for My Logo Company
|
62 |
url_logo_company = "images/Mayo_Clinic_logo.png"
|
63 |
-
with
|
64 |
st.image(url_logo_company, width=100)
|
65 |
-
st.sidebar.markdown("
|
66 |
|
67 |
|
68 |
|
|
|
52 |
# Rhazes Lab and Mayo Clinic Logos
|
53 |
st.sidebar.markdown("\n\n")
|
54 |
# Create a two-column layout for logos and text
|
55 |
+
col1 = st.sidebar.columns(1)
|
56 |
|
57 |
# Logo and text for My Logo Lab
|
|
|
|
|
|
|
|
|
58 |
url_logo_company = "images/Mayo_Clinic_logo.png"
|
59 |
+
with col1:
|
60 |
st.image(url_logo_company, width=100)
|
61 |
+
st.sidebar.markdown("Department of Artificial Intelligence and Informatics, \n Mayo Clinic, \n Rochester, MN, USA")
|
62 |
|
63 |
|
64 |
|