File size: 909 Bytes
2b5ccc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import streamlit as st
def display_documentation():
st.markdown("<hr style='border-color: darkgrey;'>", unsafe_allow_html=True) # Add this line
st.title("OPEN DATA IA RSE Bordeaux Métropole")
st.markdown("## La Data et l'IA au service des démarches RSE (Economie, Social, Environnemental)")
st.image("DATA IA RSE Bordeaux Metropole.png", caption="Data IA RSE Bordeaux Metropole")
st.image("RECO IA RSE Bordeaux Metropole.png", caption="RECO IA RSE Bordeaux Metropole")
# Credits
st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)
st.markdown("""
<div class="credits">
<p>Data Bordeaux Métropole : Licence MIT 2024 </p>
<p>Data bziiit : Licence MIT 2024</p>
<p>API IA : Perplexity</p>
<p>Avril 2004</p>
</div>
""", unsafe_allow_html=True)
if __name__ == "__main__":
main() |