Spaces:
Runtime error
Runtime error
File size: 837 Bytes
ec04958 6683b59 ec04958 6683b59 ff92bc5 4a3e7be ff92bc5 4a3e7be ec04958 52d6a93 ec04958 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import streamlit as st
from st_pages import Page, show_pages, add_page_title
import streamlit as st
with st.echo("below"):
from st_pages import Page, add_page_title, show_pages
"## Declaring the pages in your app:"
show_pages(
[
Page("app.py", "Home", "🏠"),
Page("pages/resumo.py", "Resumo", ":books:"),
Page("pages/traducao.py", "Tradução", ":page_facing_up:"),
]
)
add_page_title() # Optional method to add title and icon to current page
st.image("https://www.viajenaviagem.com/wp-content/uploads/2020/02/belo-horizonte-pampulha.jpg.webp", caption='Autoria de Thiago Lanza. Todos os direitos reservados')
st.header("Esse é o ajudante!")
st.subheader("Escolha no menu ao lado entre traduzir um texto do português para o inglês ou resumir um texto.")
|