Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -392,20 +392,6 @@ IMPORTANT:
|
|
392 |
# Configurar la interfaz de usuario con Streamlit
|
393 |
st.set_page_config(page_title="Enchanted Hooks", layout="wide")
|
394 |
|
395 |
-
# Configurar el estado inicial del sidebar si no existe
|
396 |
-
if 'sidebar_state' not in state:
|
397 |
-
state.sidebar_state = 'collapsed'
|
398 |
-
|
399 |
-
# Configurar la página con el sidebar colapsado
|
400 |
-
st.set_page_config(
|
401 |
-
page_title="Tu App",
|
402 |
-
page_icon="🚀",
|
403 |
-
layout="wide",
|
404 |
-
initial_sidebar_state="collapsed"
|
405 |
-
)
|
406 |
-
|
407 |
-
st.markdown("""<style>...""", unsafe_allow_html=True)
|
408 |
-
|
409 |
# Leer el contenido del archivo manual.md
|
410 |
with open("manual.md", "r", encoding="utf-8") as file:
|
411 |
manual_content = file.read()
|
|
|
392 |
# Configurar la interfaz de usuario con Streamlit
|
393 |
st.set_page_config(page_title="Enchanted Hooks", layout="wide")
|
394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
# Leer el contenido del archivo manual.md
|
396 |
with open("manual.md", "r", encoding="utf-8") as file:
|
397 |
manual_content = file.read()
|