thursday / home.py
Ankush05's picture
Merge branch 'main' of https://huggingface.co/spaces/Ankush05/thursday
cf68178
raw
history blame
1.38 kB
import streamlit as st
from streamlit_option_menu import option_menu
import os
def Reminder():
embed = """<iframe
src="https://ankush05-reminder.hf.space"
frameborder="0"
width="1100"
height="900"
></iframe>
"""
st.markdown(embed, unsafe_allow_html=True)
def Reports():
st.title("Reports")
def ChatBot():
botspace = """<iframe
src="https://ankush05-chatbot.hf.space"
frameborder="0"
width="850"
height="450"
></iframe>"""
st.markdown(botspace, unsafe_allow_html=True)
def Friday():
st.title("Friday")
def Code4():
st.title("Code4")
def Code5():
st.title("Code5")
def Code6():
st.title("Code6")
def dashboard():
st.title("Welcome to the Dashboard")
with st.sidebar:
selected = option_menu(
None,
["Reminder", "ChatBot", "Friday", "Code4", "Code5", "Code6", "Logout"],
icons=["plus", "eye", "sun", "book", "book", "book", "power-off"],
)
if selected == "Reminder":
Reminder()
elif selected == "ChatBot":
ChatBot()
elif selected == "Friday":
Friday()
elif selected == "Code4":
Code4()
elif selected == "Code5":
Code5()
elif selected == "Code6":
Code6()
elif selected == "Logout":
st.session_state["user"] = "Guest"
st.experimental_rerun()