Spaces:
Runtime error
Runtime error
Upload 11 files
Browse files
app.py
CHANGED
@@ -106,15 +106,28 @@ if not st.session_state.messages:
|
|
106 |
# Mostrar la car谩tula inicial con el logo centrado
|
107 |
col1, col2, col3 = st.columns([1, 2, 1])
|
108 |
with col2:
|
|
|
|
|
109 |
st.image("robocopy_logo.png", width=300)
|
|
|
|
|
|
|
110 |
st.markdown("""
|
111 |
<div style='text-align: center; margin-top: -35px;'>
|
112 |
-
<div style='display: flex; justify-content: center;'>
|
113 |
<h1 class='robocopy-title'>PUV Creator</h1>
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
<p style='font-size: 14px; background-color: #101720; padding: 8px; border-radius: 5px; margin-top: 10px; color: #4ECDC4;'>
|
119 |
馃幆 Experto en crear Propuestas de Valor 脷nicas que convierten audiencia en clientes
|
120 |
</p>
|
|
|
106 |
# Mostrar la car谩tula inicial con el logo centrado
|
107 |
col1, col2, col3 = st.columns([1, 2, 1])
|
108 |
with col2:
|
109 |
+
# Centrar la imagen
|
110 |
+
st.markdown("<div style='text-align: center;'>", unsafe_allow_html=True)
|
111 |
st.image("robocopy_logo.png", width=300)
|
112 |
+
st.markdown("</div>", unsafe_allow_html=True)
|
113 |
+
|
114 |
+
# T铆tulo
|
115 |
st.markdown("""
|
116 |
<div style='text-align: center; margin-top: -35px;'>
|
|
|
117 |
<h1 class='robocopy-title'>PUV Creator</h1>
|
118 |
+
</div>
|
119 |
+
""", unsafe_allow_html=True)
|
120 |
+
|
121 |
+
# Subt铆tulo
|
122 |
+
st.markdown("""
|
123 |
+
<div style='text-align: center;'>
|
124 |
+
<p style='font-size: 16px; color: #4ECDC4;'>By Jes煤s Cabrera</p>
|
125 |
+
</div>
|
126 |
+
""", unsafe_allow_html=True)
|
127 |
+
|
128 |
+
# Descripci贸n
|
129 |
+
st.markdown("""
|
130 |
+
<div style='text-align: center;'>
|
131 |
<p style='font-size: 14px; background-color: #101720; padding: 8px; border-radius: 5px; margin-top: 10px; color: #4ECDC4;'>
|
132 |
馃幆 Experto en crear Propuestas de Valor 脷nicas que convierten audiencia en clientes
|
133 |
</p>
|