import streamlit as st import logging app = st.navigation( {"App": [st.Page("Home.py", title="Home", icon=":material/home:"), st.Page("About.py", icon="🥅")], "Models": [st.Page("Hockey_Breeds.py", icon=":material/gradient:"), st.Page("hockey_object_detection.py", title="Hockey Object Detection", icon=":material/filter_b_and_w:")] } ) app.run()