import streamlit as st
from PIL import Image
# Add a title
st.set_page_config(page_title="Select Diagnosis", layout="centered")
st.title("Medical Diagnosis App")
st.markdown("")
st.markdown("
Currently Brain Tumors , Xrays and Skin Leisons are ready for diagnosis "
"The Models also explain what area in the images is the cause of diagnosis "
"Currently the models are trained on a small dataset and will be trained on a larger dataset in the future"
' The Application also provides generated information on how to diagnose the disease and what should the patient do in that case'
,unsafe_allow_html=True)
with st.sidebar.container():
st.markdown("![Alt Text](https://media.giphy.com/media/Yp9Fi2moJ026Q/giphy.gif)")