Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
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 |
|