georad commited on
Commit
b2ba898
·
verified ·
1 Parent(s): 5b2c64b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
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, about_page]) # WITHOUT SECTIONS
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()