import streamlit as st st.set_page_config( page_title="About US", page_icon="🎃", layout="wide", initial_sidebar_state="expanded", ) page_bg_img_link = f""" """ st.markdown(page_bg_img_link, unsafe_allow_html=True) with st.sidebar: # st.markdown( # '
Mental Health
', # unsafe_allow_html=True, # ) st.image( "Mental health-pana.png", width=320, ) def about_page(): title = st.markdown( '
About Us
', unsafe_allow_html=True, ) st.markdown( '
We are the students of M.Sc Data Science . We developed this web application by sharing each others knowledge and working together as a team.
', unsafe_allow_html=True, ) st.markdown("""---""") with st.container(): col = st.columns([1, 1, 1]) # HARSH # with col[0]: st.image("Developer activity-pana.png") st.markdown( '
Harsh Narayan
', unsafe_allow_html=True, ) # st.markdown( # '
Masters in Data Science
', # unsafe_allow_html=True, # ) st.markdown( "[![My Skills](https://skillicons.dev/icons?i=linkedin)](https://www.linkedin.com/in/harsh-narayan-377907264/)" ) # SHAMEEK # with col[2]: st.image("Standup meeting-pana.png") st.markdown( '
Shameek Bhowmick
', unsafe_allow_html=True, ) # st.markdown( # '
Masters in Data Science
', # unsafe_allow_html=True, # ) st.markdown( "[![My Skills](https://skillicons.dev/icons?i=linkedin)](https://www.linkedin.com/in/shameek-bhowmick-3481131a8/)" ) # SAKSHI # with col[1]: st.image("Report-pana.png") st.markdown( '
Sakshi Panhalkar
', unsafe_allow_html=True, ) # st.markdown( # '
Masters in Data Science
', # unsafe_allow_html=True, # ) st.markdown( "[![My Skills](https://skillicons.dev/icons?i=linkedin)](https://www.linkedin.com/in/sakshi-panhalkar-7188061b4/)" ) if __name__ == "__main__": about_page()