georad commited on
Commit
d29fdad
·
verified ·
1 Parent(s): 38e6a1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -3,7 +3,6 @@ import streamlit as st
3
  # --- SHARED ON ALL PAGES ---
4
  #st.logo(image=":material/medical_information:")
5
  #st.logo("images/medical_information_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.png")
6
- st.sidebar.markdown("PagesZZZ")
7
 
8
  # --- PAGE SETUP ---
9
  home_page = st.Page(
@@ -42,7 +41,7 @@ about_page = st.Page(
42
  #page = PAGES[selection]
43
 
44
  # --- NAVIGATION SETUP ---
45
- pg = st.navigation(pages=[st.sidebar.markdown("Pages"), home_page, type_text_page, upload_file_page,]) # about_page]) # WITHOUT SECTIONS
46
  #pg = st.navigation({"Home": [home_page], "Demo": [type_text_page, upload_file_page], "About": [about_page]}) # WITH SECTIONS
47
  pg.run()
48
 
 
3
  # --- SHARED ON ALL PAGES ---
4
  #st.logo(image=":material/medical_information:")
5
  #st.logo("images/medical_information_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.png")
 
6
 
7
  # --- PAGE SETUP ---
8
  home_page = st.Page(
 
41
  #page = PAGES[selection]
42
 
43
  # --- NAVIGATION SETUP ---
44
+ pg = st.navigation(pages=[home_page, type_text_page, upload_file_page,]) # about_page]) # WITHOUT SECTIONS
45
  #pg = st.navigation({"Home": [home_page], "Demo": [type_text_page, upload_file_page], "About": [about_page]}) # WITH SECTIONS
46
  pg.run()
47