Saghir commited on
Commit
b484c33
·
verified ·
1 Parent(s): be8436c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -7
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, col2 = st.sidebar.columns(2)
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 col2:
64
  st.image(url_logo_company, width=100)
65
- st.sidebar.markdown("Rhazes Lab, \n Department of Artificial Intelligence and Informatics, \n Mayo Clinic, \n Rochester, MN, USA")
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