Spaces:
Runtime error
Runtime error
File size: 581 Bytes
99bebe0 ed67098 99bebe0 ed67098 99bebe0 ed67098 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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", "🎛️"),
]
)
|