somewhere / app.py
itachi-ai's picture
update
52d6b67 verified
raw
history blame contribute delete
203 Bytes
import streamlit as st
from admin import admin
pg = st.navigation([
st.Page("home.py", title="Home", icon="🏯"),
st.Page(admin, title="࿋Itachi📍", icon=":material/favorite:"),
])
pg.run()