HiralShah62's picture
Upload 7 files
860c4dc verified
raw
history blame contribute delete
326 Bytes
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()