Spaces:
Running
Running
import streamlit as st | |
from translate_app import tr | |
title = "Value Props" | |
sidebar_name = "Introduction" | |
def run(): | |
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.header("**"+tr("A propos")+"**") | |
st.markdown(tr( | |
""" | |
Cet espace a pour objectif de tester differentes briques nécéssaire pour l'outils "Value Props" | |
""") | |
, unsafe_allow_html=True) | |
''' | |
sent = \ | |
""" | |
""" | |
st.markdown(tr(sent), unsafe_allow_html=True) | |
''' |