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", "๐๏ธ"), | |
| ] | |
| ) | |