Spaces:
Runtime error
Runtime error
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", "ποΈ"), | |
] | |
) | |