topshelf-poc / src /app.py
Dan Biagini
working based with multipage nav
6d4cc80
raw
history blame
394 Bytes
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()