import streamlit as st
def welcome():
# Logo and main heading
st.image("logo-hd.png", width=200)
st.title("Welcome to PawSome-AI 🐾")
st.write("Your AI-Powered Pet Care Assistant")
st.markdown("---") # Horizontal line
# Main layout with two columns
col1, col2 = st.columns(2)
# Key Features section centered (Column 1)
with col1:
st.markdown("""
Key Features
Explore the capabilities that PawSome-AI offers to enhance your pet care experience:
- Dog Breed Identification and Disease Detection
Upload images to identify your dog's breed and detect diseases. Get detailed information on symptoms, precautions, and treatments.
- Pet Care Chatbot
Interactive chatbot for pet-care-related queries and advice. Receive personalized recommendations on nutrition, grooming, behavior, and more.
""", unsafe_allow_html=True)
# Additional Key Features (Column 2)
with col2:
st.markdown("""
Additional Key Features
- Prescription Analyzer
Upload veterinary prescriptions to manage your pet's medications effectively
Get detailed information about medications listed in the prescription.
- Contact and Feedback
Contact form for inquiries and feedback collection. Reach out to us for any questions or suggestions.
- Future Features
Planned enhancements to further assist pet owners. Suggestions are welcomed.
""", unsafe_allow_html=True)
# How to Use section centered (Spanning both columns)
st.markdown("""
How to Use
- Navigate through the app using the sidebar menu on the left.
- Upload an image to detect dog breeds and diseases.
- Interact with the chatbot for personalized pet care advice.
- Use the Prescription Analyzer to manage your pet's medications.
""", unsafe_allow_html=True)