Update modules/ui/ui.py
Browse files- modules/ui/ui.py +6 -7
modules/ui/ui.py
CHANGED
@@ -212,23 +212,22 @@ def display_videos_and_info(lang_code, t):
|
|
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 |
-
|
|
|
220 |
with col1:
|
221 |
st.image("assets/img/socialmedia/_MG_2790.jpg",
|
222 |
caption="MakerFaire CDMX 2024",
|
223 |
use_column_width=True)
|
224 |
with col2:
|
225 |
-
st.image("assets/img/socialmedia/
|
226 |
caption="MakerFaire CDMX 2023",
|
227 |
use_column_width=True)
|
228 |
-
|
229 |
-
st.image("assets/img/socialmedia/Facebook_CoverPhoto-1_820x312.jpg",
|
230 |
-
caption="Evento X",
|
231 |
-
use_column_width=True)
|
232 |
# Tab de Videos
|
233 |
with tab_videos:
|
234 |
videos = {
|
|
|
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:
|
233 |
videos = {
|