JeCabrera commited on
Commit
94767b1
·
verified ·
1 Parent(s): b2609a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -0
app.py CHANGED
@@ -391,6 +391,37 @@ IMPORTANT:
391
  # Configurar la interfaz de usuario con Streamlit
392
  st.set_page_config(page_title="Enchanted Hooks", layout="wide")
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  # Centrar el título y el subtítulo
395
  st.markdown("<h1 style='text-align: center;'>Enchanted Hooks</h1>", unsafe_allow_html=True)
396
  st.markdown("<h4 style='text-align: center;'>Imagina poder conjurar títulos que no solo informan, sino que encantan. Esta app es tu varita mágica en el mundo del copywriting, transformando cada concepto en un titular cautivador que deja a todos deseando más.</h4>", unsafe_allow_html=True)
 
391
  # Configurar la interfaz de usuario con Streamlit
392
  st.set_page_config(page_title="Enchanted Hooks", layout="wide")
393
 
394
+ # Leer el contenido del archivo manual.md
395
+ with open("manual.md", "r", encoding="utf-8") as file:
396
+ manual_content = file.read()
397
+
398
+ # Mostrar el contenido del manual en el sidebar
399
+ st.sidebar.markdown(manual_content)
400
+
401
+ # Ocultar elementos de la interfaz
402
+ st.markdown("""
403
+ <style>
404
+
405
+ /* Reducir espacio superior */
406
+ .block-container {
407
+ padding-top: 1rem;
408
+ padding-bottom: 5rem;
409
+ }
410
+
411
+ /* Ajustar espaciado del título */
412
+ h1 {
413
+ margin-top: -2rem;
414
+ padding-top: 1rem;
415
+ }
416
+
417
+ /* Ajustar espaciado del subtítulo */
418
+ h4 {
419
+ margin-top: 0.5rem;
420
+ padding-top: 0rem;
421
+ }
422
+ </style>
423
+ """, unsafe_allow_html=True)
424
+
425
  # Centrar el título y el subtítulo
426
  st.markdown("<h1 style='text-align: center;'>Enchanted Hooks</h1>", unsafe_allow_html=True)
427
  st.markdown("<h4 style='text-align: center;'>Imagina poder conjurar títulos que no solo informan, sino que encantan. Esta app es tu varita mágica en el mundo del copywriting, transformando cada concepto en un titular cautivador que deja a todos deseando más.</h4>", unsafe_allow_html=True)