Update app.py
Browse files
app.py
CHANGED
@@ -2,8 +2,8 @@ import streamlit as st
|
|
2 |
|
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.
|
7 |
|
8 |
# --- PAGE SETUP ---
|
9 |
home_page = st.Page(
|
@@ -30,12 +30,12 @@ about_page = st.Page(
|
|
30 |
icon=":material/info:",
|
31 |
default=False)
|
32 |
|
33 |
-
PAGES = {
|
34 |
-
"Home": "pages/home.py" ,
|
35 |
-
"DEMO type_text": "pages/type_text.py",
|
36 |
-
"DEMO upload file (not yet active)": "pages/upload_file.py",
|
37 |
-
"About": "pages/about.py",
|
38 |
-
}
|
39 |
|
40 |
#selection = st.sidebar.radio("Pages", list(PAGES.keys()))
|
41 |
#selection = st.sidebar.radio("Pages", [home_page, type_text_page, upload_file_page, about_page])
|
|
|
2 |
|
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("Pages")
|
7 |
|
8 |
# --- PAGE SETUP ---
|
9 |
home_page = st.Page(
|
|
|
30 |
icon=":material/info:",
|
31 |
default=False)
|
32 |
|
33 |
+
#PAGES = {
|
34 |
+
# "Home": "pages/home.py" ,
|
35 |
+
# "DEMO type_text": "pages/type_text.py",
|
36 |
+
# "DEMO upload file (not yet active)": "pages/upload_file.py",
|
37 |
+
# "About": "pages/about.py",
|
38 |
+
#}
|
39 |
|
40 |
#selection = st.sidebar.radio("Pages", list(PAGES.keys()))
|
41 |
#selection = st.sidebar.radio("Pages", [home_page, type_text_page, upload_file_page, about_page])
|