Spaces:
Running
Running
Upload 11 files
Browse files
app.py
CHANGED
@@ -106,21 +106,41 @@ 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 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
</div>
|
116 |
-
|
117 |
-
|
|
|
|
|
|
|
|
|
118 |
</div>
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
# Mostrar los ejemplos
|
126 |
ejemplos = [
|
|
|
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("""
|
111 |
+
<style>
|
112 |
+
div.stImage {
|
113 |
+
text-align: center;
|
114 |
+
display: block;
|
115 |
+
margin-left: auto;
|
116 |
+
margin-right: auto;
|
117 |
+
}
|
118 |
+
</style>
|
119 |
+
""", unsafe_allow_html=True)
|
120 |
+
st.image("robocopy_logo.png", width=300, use_column_width=True)
|
121 |
+
|
122 |
+
# T铆tulo
|
123 |
+
st.markdown("""
|
124 |
+
<div style='text-align: center; margin-top: -35px; width: 100%;'>
|
125 |
+
<h1 class='robocopy-title' style='width: 100%; text-align: center;'>PUV Creator</h1>
|
126 |
</div>
|
127 |
+
""", unsafe_allow_html=True)
|
128 |
+
|
129 |
+
# Subt铆tulo
|
130 |
+
st.markdown("""
|
131 |
+
<div style='text-align: center; width: 100%;'>
|
132 |
+
<p style='font-size: 16px; color: #4ECDC4; width: 100%; text-align: center;'>By Jes煤s Cabrera</p>
|
133 |
</div>
|
134 |
+
""", unsafe_allow_html=True)
|
135 |
+
|
136 |
+
# Descripci贸n
|
137 |
+
st.markdown("""
|
138 |
+
<div style='text-align: center; width: 100%;'>
|
139 |
+
<p style='font-size: 14px; background-color: #101720; padding: 8px; border-radius: 5px; margin-top: 10px; color: #4ECDC4; width: 100%; text-align: center;'>
|
140 |
+
馃幆 Experto en crear Propuestas de Valor 脷nicas que convierten audiencia en clientes
|
141 |
+
</p>
|
142 |
+
</div>
|
143 |
+
""", unsafe_allow_html=True)
|
144 |
|
145 |
# Mostrar los ejemplos
|
146 |
ejemplos = [
|