joaopimenta commited on
Commit
958a96f
Β·
verified Β·
1 Parent(s): 8934b69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -53,13 +53,13 @@ dark_theme = """
53
  st.markdown(dark_theme, unsafe_allow_html=True)
54
 
55
  # Criar o menu na barra lateral
56
- #st.sidebar.title("πŸ“Œ Menu")
57
- #page = st.sidebar.radio(
58
- #"Selecione uma opΓ§Γ£o:",
59
- #["🏠 Home", "πŸ“Š Tabular Data", "πŸ“ Clinical Text Notes", "πŸ”€ Ensemble Prediction"]
60
- #)
61
 
62
- pages = ["🏠 Home", "πŸ“Š Tabular Data", "πŸ“ Clinical Text Notes", "πŸ”€ Ensemble Prediction"]
63
 
64
  styles = {
65
  "nav": {
@@ -91,7 +91,7 @@ styles = {
91
  }
92
 
93
 
94
- page = st_navbar(pages, styles=styles)
95
 
96
  if page=="🏠 Home":
97
 
 
53
  st.markdown(dark_theme, unsafe_allow_html=True)
54
 
55
  # Criar o menu na barra lateral
56
+ st.sidebar.title("πŸ“Œ Menu")
57
+ page = st.sidebar.radio(
58
+ "Selecione uma opΓ§Γ£o:",
59
+ ["🏠 Home", "πŸ“Š Tabular Data", "πŸ“ Clinical Text Notes", "πŸ”€ Ensemble Prediction"]
60
+ )
61
 
62
+ #pages_up = ["🏠 Home", "πŸ“Š Tabular Data", "πŸ“ Clinical Text Notes", "πŸ”€ Ensemble Prediction"]
63
 
64
  styles = {
65
  "nav": {
 
91
  }
92
 
93
 
94
+ #page = st_navbar(pages, styles=styles)
95
 
96
  if page=="🏠 Home":
97