Value-Props / tabs /intro.py
Demosthene-OR's picture
....
fe8d156
raw
history blame
1.45 kB
import streamlit as st # type: ignore
from translate_app import tr
title = "Value Props"
sidebar_name = "Introduction"
def run():
st.write("")
st.write("")
# TODO: choose between one of these GIFs
# st.image("https://dst-studio-template.s3.eu-west-3.amazonaws.com/1.gif")
# st.image("https://dst-studio-template.s3.eu-west-3.amazonaws.com/2.gif")
st.image("https://dst-studio-template.s3.eu-west-3.amazonaws.com/3.gif")
# st.image("assets/tough-communication.gif",use_column_width=True)
# if st.session_state.Cloud == 0:
# st.image("assets/miss-honey-glasses-off.gif",use_column_width=True)
# else:
# st.image("https://media.tenor.com/pfOeAfytY98AAAAC/miss-honey-glasses-off.gif",use_column_width=True)
st.title(tr(title))
st.markdown('''
## **'''+tr("Système d'aide à la mise en oeuvre d'une Proposition de Valeur en entreprise")+'''**
------------------------------------------------------------------------------------
''')
st.markdown(tr(
"""
<h4>
Bienvenue dans le fabuleux univers de Value Props.<br>
Decouvrez et testez ici les futures fonctionnalités que la plateforme souhaite vous proposer.<br>
N'hesitez pas à nous faire part de vos commentaires en les envoyant à m.h.vincent@icloud.com<br>
</h4>
""")
, unsafe_allow_html=True)