Guide_Evaluation_LLM / pages /26_PANORAMAS_ANNUELS.py
bourdoiscatie's picture
Upload 5 files
faf36fe verified
raw
history blame contribute delete
785 Bytes
import streamlit as st
st.set_page_config(layout="wide")
from streamlit_extras.switch_page_button import switch_page
st.markdown("""## Panoramas annuels""")
st.markdown(""" """)
st.markdown("""
Chaque année, Clémentine réalise un panorama des ressources intéressantes apparues lors de l'année qu'il ne fallait pas louper. Cette section les récapitulent tous.""")
st.markdown(""" """)
st.markdown(""" """)
st.markdown(""" """)
col1, col2, col3= st.columns(3)
with col1:
if st.button('Section précédente', use_container_width=True):
switch_page("Ressources")
with col2:
if st.button("Accueil", use_container_width=True):
switch_page("Home")
with col3:
if st.button("Section suivante", use_container_width=True):
switch_page("Panorama 2023")