File size: 429 Bytes
0565c21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st

def run():
    # Title
    st.title('Contacts')
    st.markdown('---')
    st.write('###### For further information, you can contact the author.')
    st.markdown('---')
    
    st.write('##### Author Contact Information:')
    st.write('[GITHUB](https://github.com/abisugiri)')
    st.write('or')
    st.write('[LINKEDIN](https://www.linkedin.com/in/abi-sugiri/)')


if __name__ == '__main__':
    run()