Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions main_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
# Define the pages
main_page = st.Page("app.py", title="EIA Fuel Type Demand")
page_2 = st.Page("region.py", title="EIA Region Demand")

page_3 = st.Page("proposal.py", title="Project Proposal, Feedback, and Reflections")
# Set up navigation
pg = st.navigation([main_page, page_2])
pg = st.navigation([main_page, page_2, page_3])

# Run the selected page
pg.run()


Loading