File size: 326 Bytes
860c4dc
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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()