AIdeaText commited on
Commit
a7b8a8e
·
verified ·
1 Parent(s): 328290e

Update modules/ui/ui.py

Browse files
Files changed (1) hide show
  1. modules/ui/ui.py +11 -7
modules/ui/ui.py CHANGED
@@ -212,21 +212,25 @@ def display_videos_and_info(lang_code, t):
212
  "Control de versiones"
213
  ])
214
 
215
- # Tab de Galería
216
  # Tab de Galería
217
  with tab_gallery:
218
- # Contenedor con ancho máximo para controlar el espacio
219
  with st.container():
220
- # Primera fila
 
 
 
 
 
221
  col1, col2 = st.columns(2)
222
  with col1:
223
- st.image("assets/img/socialmedia/_MG_2790.jpg",
224
- caption="MakerFaire CDMX 2024",
225
- use_column_width=True)
226
- with col2:
227
  st.image("assets/img/socialmedia/_MG_2587.jpg",
228
  caption="MakerFaire CDMX 2023",
229
  use_column_width=True)
 
 
 
 
230
 
231
  # Tab de Videos
232
  with tab_videos:
 
212
  "Control de versiones"
213
  ])
214
 
 
215
  # Tab de Galería
216
  with tab_gallery:
217
+ # Contenedor con ancho máximo
218
  with st.container():
219
+ # Primera fila con imagen grande
220
+ st.image("assets/img/socialmedia/_MG_2790.jpg",
221
+ caption="MakerFaire CDMX 2024",
222
+ use_column_width=True)
223
+
224
+ # Segunda fila con dos imágenes más pequeñas
225
  col1, col2 = st.columns(2)
226
  with col1:
 
 
 
 
227
  st.image("assets/img/socialmedia/_MG_2587.jpg",
228
  caption="MakerFaire CDMX 2023",
229
  use_column_width=True)
230
+ with col2:
231
+ st.image("assets/img/socialmedia/_MG_2790.jpg",
232
+ caption="Evento X",
233
+ use_column_width=True)
234
 
235
  # Tab de Videos
236
  with tab_videos: