Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| st.set_page_config(page_title="Board Game Tracker", layout="wide") | |
| home_page = st.Page("pages/home.py", title="Home", url_path="home", default=True) | |
| skull_king_page = st.Page("pages/skull_king.py", title="Skull King", url_path="skull_king") | |
| dungeon_draft_page = st.Page("pages/dungeon_draft.py", title="Dungeon Draft", url_path="dungeon_draft") | |
| pg = st.navigation([home_page, skull_king_page, dungeon_draft_page]) | |
| pg.run() | |