Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -105,6 +105,13 @@ def generate_bullets(number_of_bullets, target_audience, product, call_to_action
|
|
| 105 |
# Configurar la interfaz de usuario con Streamlit
|
| 106 |
st.set_page_config(page_title="Quick Prompt", layout="wide")
|
| 107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
# Centrar el t铆tulo y el subt铆tulo
|
| 109 |
st.markdown("<h1 style='text-align: center;'>Impact Bullet Generator</h1>", unsafe_allow_html=True)
|
| 110 |
st.markdown("<h4 style='text-align: center;'>Transforma los pensamientos de tu audiencia en balas persuasivas que inspiren a la acci贸n.</h4>", unsafe_allow_html=True)
|
|
|
|
| 105 |
# Configurar la interfaz de usuario con Streamlit
|
| 106 |
st.set_page_config(page_title="Quick Prompt", layout="wide")
|
| 107 |
|
| 108 |
+
# Leer el contenido del archivo manual.md
|
| 109 |
+
with open("manual.md", "r", encoding="utf-8") as file:
|
| 110 |
+
manual_content = file.read()
|
| 111 |
+
|
| 112 |
+
# Mostrar el contenido del manual en el sidebar
|
| 113 |
+
st.sidebar.markdown(manual_content)
|
| 114 |
+
|
| 115 |
# Centrar el t铆tulo y el subt铆tulo
|
| 116 |
st.markdown("<h1 style='text-align: center;'>Impact Bullet Generator</h1>", unsafe_allow_html=True)
|
| 117 |
st.markdown("<h4 style='text-align: center;'>Transforma los pensamientos de tu audiencia en balas persuasivas que inspiren a la acci贸n.</h4>", unsafe_allow_html=True)
|