import streamlit as st def write(*args): # ==== Contacts ==== # with st.beta_container(): st.markdown("") st.markdown("") st.header(":rocket:About us") st.markdown( """ You can reach out to us via email, phone, or - if you are old-fashioned - via mail """ ) with st.beta_expander("Contacts"): _, col2 = st.beta_columns([0.5, 3]) col2.markdown( """ :email: wordify@unibocconi.it :telephone_receiver: +39 02 5836 2604 :postbox: Via Röntgen n. 1, Milan 20136 (ITALY) """ ) st.write( """ """, unsafe_allow_html=True, )