-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_P_about_me.py
More file actions
21 lines (17 loc) · 1.01 KB
/
Copy pathmain_P_about_me.py
File metadata and controls
21 lines (17 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from main_functions import *
def page_about_me():
st.title('Hello world')
st.image('https://media-exp1.licdn.com/dms/image/C4D03AQHca98gKL-n1A/profile-displayphoto-shrink_200_200/0/1528227098040?e=1655942400&v=beta&t=2Q5g4dNLGU_P5V51gia6F0Y0o_17YnM-CmOzT1L9hsM')
st.subheader('About me')
st.text('This set of dashboards was prepared to illustrate possibilities of this Streamlit.')
linkedinLink = '[LinkedIn](https://pl.linkedin.com/in/kamilskoczylas96)'
repoLink = '[GitHub](https://github.com/emptynonsens/SteamLitResearch)'
st.markdown(linkedinLink, unsafe_allow_html=True)
st.markdown(repoLink, unsafe_allow_html=True)
#link_button('LinkedIn', linkedinLink)
# link_button('GitHub', repoLink)
#if st.sidebar.button('LinkedIn'):
# webbrowser.open_new_tab(linkedinLink)
#if st.sidebar.button('GitHub'):
# webbrowser.open_new_tab(repoLink)
st.text('This set of dashboards was prepared to ilustrate possibilities of this Streamlit.')