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:

""", unsafe_allow_html=True) # Additional Key Features (Column 2) with col2: st.markdown("""

Additional Key Features

""", unsafe_allow_html=True) # How to Use section centered (Spanning both columns) st.markdown("""

How to Use

""", unsafe_allow_html=True)