import streamlit as st
def main():
# Set page configuration
st.set_page_config(
page_title="Healthcare Portal",
page_icon="🏥",
layout="wide"
)
# Header
st.markdown("""
Healthcare Portal
""", unsafe_allow_html=True)
# Home Page Content
st.title("Welcome to the Healthcare Portal")
# Hero Section
st.markdown("""
Your Health, Our Priority
Providing quality healthcare services and information to our community.
Explore our services below!
""", unsafe_allow_html=True)
# Featured Services
st.header("Our Services")
col1, col2, col3, col4 = st.columns(4)
with col1:
st.markdown("### 🏥 Healthcare Take")
st.write("Comprehensive health check-ups and consultations.")
with col2:
st.markdown("### 📊 Report Analysis")
st.write("In-depth analysis of your health reports.")
with col3:
st.markdown("### 🥗 Food & Nutrition Advisor")
st.write("Personalized dietary advice for a healthier you.")
with col4:
st.markdown("### 💊 Medication Advisor")
st.write("Guidance on medications and treatment plans.")
if __name__ == "__main__":
main()