Update app.py
Browse files
app.py
CHANGED
@@ -12,13 +12,7 @@ type_text_page = st.Page(
|
|
12 |
icon=":material/keyboard:",
|
13 |
default=False,)
|
14 |
|
15 |
-
about_page = st.Page(
|
16 |
-
page="pages/about.py",
|
17 |
-
title="About",
|
18 |
-
icon=":material/info:",
|
19 |
-
default=False)
|
20 |
-
|
21 |
# --- NAVIGATION SETUP ---
|
22 |
-
pg = st.navigation(pages=[type_text_page
|
23 |
#pg = st.navigation({"Chapter_Index": [start_page], "Demo": [type_text_page, upload_file_page], "About": [about_page]}) # WITH SECTIONS
|
24 |
pg.run()
|
|
|
12 |
icon=":material/keyboard:",
|
13 |
default=False,)
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
# --- NAVIGATION SETUP ---
|
16 |
+
pg = st.navigation(pages=[type_text_page]) # WITHOUT SECTIONS
|
17 |
#pg = st.navigation({"Chapter_Index": [start_page], "Demo": [type_text_page, upload_file_page], "About": [about_page]}) # WITH SECTIONS
|
18 |
pg.run()
|