From 391eeffe5317c1fe0f2b0588c05fd791fa28de15 Mon Sep 17 00:00:00 2001 From: Francois Pelletier Date: Mon, 17 Apr 2023 23:36:55 -0400 Subject: [PATCH] Ajout de promo --- main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 1d2afa8..ea950c1 100644 --- a/main.py +++ b/main.py @@ -66,6 +66,8 @@ def write_app(): :return: """ st.title("Lecture rapide 'bionique'") + st.markdown("La lecture bionique consiste à convertir la moitié des lettres d'un mot en caractères gras. C'est " + "supposé augmenter la vitesse de lecture d'un texte.") lang = st.sidebar.selectbox(label="Langue", options=["french", "english"], index=0) st.sidebar.text(f"Langue: {lang}") st.text("Entre ton texte ici:") @@ -74,7 +76,8 @@ 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") + st.markdown("Si tu veux, toi aussi, apprendre à créer tes propres apps, [Y'app pas d'problème](" + "https://jevalide.ca/yapp). Inscris-toi sans aucun engagement ! Lancement en mai 2023") def main():