Spaces:
Sleeping
Sleeping
File size: 1,190 Bytes
aa4ce78 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 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"
)
# Display your logo at the top of the main page
# Adjust the path to your logo image
# st.header("Welcome to PawSome AI")
with st.sidebar:
selected = option_menu(
'PawSome AI',
['Welcome', 'Disease & Breed Detection', 'Petcare ChatBot', 'Prescription-Analyzer', 'Team Details', 'Feedback'],
icons=['house-door-fill', 'search', 'chat-right-fill', 'file-earmark-break-fill', 'info', 'star'],
menu_icon="🐶",
default_index=0
)
if selected == 'Welcome':
import welcome
welcome.welcome()
if selected == 'Disease & Breed Detection':
import model
model.model()
if selected == 'Petcare ChatBot':
import chatbot
chatbot.chatbot()
if selected == 'Prescription-Analyzer':
import prescription
prescription.presc_analyze()
if selected == 'Feedback':
import feedback
feedback.feedback()
if selected == 'Team Details':
import team
team.team_details()
|