from st_pages import Page, show_pages, add_page_title # Optional -- adds the title and icon to the current page add_page_title() # Specify what pages should be shown in the sidebar, and what their titles and icons # should be show_pages( [ Page("home.py", "Home & Statistics", "📊"), Page("pages/0_GoJourney.py", "GoJourney", "⛵"), Page("pages/1_Text_To_Image.py", "Text To Image", "🎨"), Page("pages/2_Image_To_Image.py", "Image To Image", "🖼️"), Page("pages/3_Control_To_Image.py", "Control To Image", "🎛️"), ] )