import streamlit as st
# Homepage content
def display_homepage():
st.markdown(
"""
Your personal AI Therapist
""", unsafe_allow_html=True
)
st.markdown(
"""
This is your healthcare chatbot that streamlines outpatient care, solves routine queries 24/7, and effortlessly automates appointment bookings, prescriptions, and reports. Let AI help you with your mental health journey.
""", unsafe_allow_html=True
)
st.markdown(
"""
""", unsafe_allow_html=True
)
col1, col2 = st.columns([1, 1])
with col1:
if st.button("Start Chat", key="start_chat_button"):
st.session_state.page = "chat"
st.experimental_rerun() # Trigger page change
with col2:
if st.button("Predict Stress", key="predict_stress_button"):
st.session_state.page = "stress"
st.experimental_rerun() # Trigger page change