Spaces:
Build error
Build error
import streamlit as st | |
from streamlit_option_menu import option_menu | |
st.set_page_config(page_title="PawSome-AI", page_icon="๐พ", layout="centered", initial_sidebar_state="auto", menu_items=None) | |
with st.sidebar: | |
selected = option_menu('PawSome AI', | |
['Welcome', | |
'Petcare', | |
'ChatBot', | |
# 'Dibetic Prediction', | |
'About', | |
'Feedback' | |
], | |
icons=['house-door-fill','robot','chat-right-fill' , 'info', 'star'],menu_icon="๐ถ", | |
default_index=0) | |
if (selected == 'Welcome'): | |
import welcome | |
welcome.welcome() | |
# if (selected == 'About'): | |
# # info.about_page() | |
# if (selected == 'Authentication'): | |
# # dependices.app() | |
# if (selected == 'ChatBot'): | |
# if (selected=='Feedback'): | |
# # feedback.run_feedback_app() | |
# if (selected=='Dibetic Prediction'): | |