File size: 681 Bytes
8fd08e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233adb5
 
8fd08e0
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import streamlit as st


def about():
    st.title("About")
    
    col1, col2 = st.columns(2)

    with col1:
        st.markdown("### About")
        st.write("This dashboard is maintained by the M2 SISE team.")
        st.write("For more information, please visit the [GitHub repository](https://github.com/jdalfons/sise-ultimate-challenge/tree/main).")

    with col2:
        st.markdown("### Collaborators")
        st.write("""
        - [Falonne Kpamegan](https://github.com/marinaKpamegan)
        - [Nancy Randriamiarijaona](https://github.com/yminanc)
        - [Cyril Kocab](https://github.com/Cyr-CK)
        - [Juan Alfonso](https://github.com/jdalfons)
        """)