NicheImage / app.py
toilaluan
update
99bebe0
raw
history blame
No virus
581 Bytes
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", "πŸŽ›οΈ"),
]
)