import streamlit as st from pathlib import Path from st_pages import Page, add_page_title, show_pages show_pages( [ Page("front/streamlit_app.py", "Home", "🏠"), # Can use :: or the actual icon Page("front/page_upload.py", "Upload", ":cloud:"), Page("front/page_sincronizador.py", "Sincronizador", ":cloud:"), # The pages appear in the order you pass them Page("front/almaviva.py", "Almaviva", "📖"), Page("front/downloads.py", "Downloads", "✏️"), ] ) add_page_title() # Optional method to add title and icon to current page st.write("Escrever documentação:")