Ajout de promo

This commit is contained in:
Francois Pelletier 2023-04-17 23:31:39 -04:00
parent 29fbdb4ff3
commit 3d88bcae28

View file

@ -65,7 +65,7 @@ def write_app():
Write a streamlit app with an input box, a numerical slider from 1 to 5 and an output box.
:return:
"""
st.title("Texte Rapide")
st.title("Lecture rapide 'bionique'")
lang = st.sidebar.selectbox(label="Langue", options=["french", "english"], index=0)
st.sidebar.text(f"Langue: {lang}")
st.text("Entre ton texte ici:")
@ -74,6 +74,7 @@ def write_app():
if submit:
st.markdown(f"{split_tokens(text, lang)}")
st.markdown("Développé avec ❤ par [François Pelletier](https://linktr.ee/jevalideca)")
st.markdown("Si tu veux, toi aussi, apprendre à créer tes propres apps, rejoins la première cohorte de [Y'app pas d'problème](https://jevalide.ca/yapp). Lancement en mai 2023")
def main():