analytics-jiten's picture
Update contact.py
5d0d7b2
raw
history blame
353 Bytes
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('[LINKEDIN](www.linkedin.com/in/jeetendra-pagwani)')
if __name__ == '__main__':
run()