thlanza commited on
Commit
4a3e7be
·
1 Parent(s): 5cded30

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -7
app.py CHANGED
@@ -10,14 +10,19 @@ add_page_title()
10
 
11
  # Specify what pages should be shown in the sidebar, and what their titles
12
  # and icons should be
 
 
13
  with st.sidebar:
14
- show_pages(
15
- [
16
- Page("app.py", "Home", "🏠"),
17
- Page("pages/resumo.py", "Resumo", ":books:"),
18
- Page("pages/traducao.py", "Tradução", ":page_facing_up:"),
19
- ]
20
- )
 
 
 
21
 
22
 
23
 
 
10
 
11
  # Specify what pages should be shown in the sidebar, and what their titles
12
  # and icons should be
13
+
14
+
15
  with st.sidebar:
16
+ st.success("Escolha sua opção:")
17
+
18
+ show_pages(
19
+ [
20
+ Page("app.py", "Home", "🏠"),
21
+ Page("pages/resumo.py", "Resumo", ":books:"),
22
+ Page("pages/traducao.py", "Tradução", ":page_facing_up:"),
23
+ ]
24
+ )
25
+
26
 
27
 
28