Spaces:
Sleeping
Sleeping
GMARTINEZMILLA
commited on
Commit
•
d0cca83
1
Parent(s):
c021df8
feat: update landing page
Browse files- app.py +16 -4
- images/foto_1.png +0 -0
app.py
CHANGED
@@ -216,10 +216,22 @@ def radar_chart(categories, values, amounts, title):
|
|
216 |
|
217 |
if page == "📃 Resumen":
|
218 |
st.title("Obten información valiosa para hacer crecer tu negocio")
|
219 |
-
|
220 |
-
#
|
221 |
-
|
222 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
# Create layout with three columns
|
225 |
col1, col2, col3 = st.columns((1.5, 4, 2.5), gap='medium')
|
|
|
216 |
|
217 |
if page == "📃 Resumen":
|
218 |
st.title("Obten información valiosa para hacer crecer tu negocio")
|
219 |
+
|
220 |
+
# Create layout with two columns
|
221 |
+
col1, col2 = st.columns((2, 4), gap='medium')
|
222 |
+
|
223 |
+
# Left Column: Display the image
|
224 |
+
with col1:
|
225 |
+
|
226 |
+
st.image("images/foto_1.png", use_column_width=True)
|
227 |
+
|
228 |
+
# Right Column: Display the text
|
229 |
+
with col2:
|
230 |
+
st.markdown("""
|
231 |
+
### Análisis de Cliente.
|
232 |
+
Adelántate a las necesidades de tus clientes.
|
233 |
+
Obtén datos clave al instante y detecta con antelación sus necesidades para ofrecerles justo lo que necesitan.
|
234 |
+
""")
|
235 |
|
236 |
# Create layout with three columns
|
237 |
col1, col2, col3 = st.columns((1.5, 4, 2.5), gap='medium')
|
images/foto_1.png
ADDED