Update modules/ui/ui.py
Browse files- modules/ui/ui.py +26 -25
modules/ui/ui.py
CHANGED
@@ -312,31 +312,32 @@ def display_videos_and_info(lang_code, t):
|
|
312 |
""")
|
313 |
|
314 |
# Tab de Galería
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
|
|
340 |
|
341 |
# Tab de Novedades
|
342 |
with tab_news:
|
|
|
312 |
""")
|
313 |
|
314 |
# Tab de Galería
|
315 |
+
with tab_gallery:
|
316 |
+
# Contenedor con ancho máximo
|
317 |
+
with st.container():
|
318 |
+
# Dividimos en dos columnas principales
|
319 |
+
col_left, col_right = st.columns(2)
|
320 |
+
|
321 |
+
# Columna izquierda: Foto 1 grande
|
322 |
+
with col_left:
|
323 |
+
# Foto 2 arriba
|
324 |
+
st.image("assets/img/socialmedia/_MG_2845.JPG",
|
325 |
+
caption="MakerFaire CDMX 2023",
|
326 |
+
width=480) # Ajusta este valor según necesites
|
327 |
+
# use_column_width=True)
|
328 |
+
|
329 |
+
# Foto 3 abajo
|
330 |
+
st.image("assets/img/socialmedia/Facebook_CoverPhoto-1_820x312.jpg",
|
331 |
+
caption="MakerFaire CDMX 2023",
|
332 |
+
width=480) # Ajusta este valor según necesites
|
333 |
+
# use_column_width=True)
|
334 |
+
|
335 |
+
# Columna derecha: Fotos 2 y 3 una encima de otra
|
336 |
+
with col_right:
|
337 |
+
st.image("assets/img/socialmedia/_MG_2790.jpg",
|
338 |
+
caption="MakerFaire CDMX 2024",
|
339 |
+
width=540) # Ajusta este valor según necesites
|
340 |
+
|
341 |
|
342 |
# Tab de Novedades
|
343 |
with tab_news:
|