import streamlit as st | |
pages = [ | |
st.Page("home.py", title="Home", icon="π "), | |
st.Page("detect.py", title="Real-Time License Plate Detection", icon="π"), | |
st.Page("refine.py", title="Refine Image for Detection", icon="πΌοΈ") | |
] | |
nav = st.navigation(pages, position="sidebar", expanded=False) | |
nav.run() |