Traz informações sobre o projeto Leia.
Source code in app/about.py
| def about():
'''
Traz informações sobre o projeto Leia.
'''
st.image('./images/logo.png', width=200)
with open('./README.md') as f:
readme = f.read()
st.markdown(readme, unsafe_allow_html=True)
|