rishu / home.py
itachi1234's picture
Update home.py
ff4f8e9
raw
history blame
No virus
582 Bytes
import streamlit as st
from streamlit_option_menu import option_menu
def homepage():
st.title("Home")
# st.header("Home Page")
st.subheader("Welcome to the Home Page")
def dashboard():
# st.title("Dashboard")
# st.header("Dashboard")
with st.sidebar:
selected = option_menu("Menu", ["Home", "Dashboard","Chat","Logout"], icons=['house', 'activity'], menu_icon="cast", default_index=0, key="dash")
if selected == "Home":
homepage()
elif selected == "Dashboard":
dashboard()