Update modules/ui/ui.py
Browse files- modules/ui/ui.py +15 -6
modules/ui/ui.py
CHANGED
@@ -214,12 +214,21 @@ def display_videos_and_info(lang_code, t):
|
|
214 |
|
215 |
# Tab de Galería
|
216 |
with tab_gallery:
|
217 |
-
|
218 |
-
with
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
# Tab de Videos
|
224 |
with tab_videos:
|
225 |
videos = {
|
|
|
214 |
|
215 |
# Tab de Galería
|
216 |
with tab_gallery:
|
217 |
+
# Contenedor con ancho máximo
|
218 |
+
with st.container():
|
219 |
+
col1, col2, col3 = st.columns(3)
|
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/_MG_2845.jpg",
|
226 |
+
caption="MakerFaire CDMX 2023",
|
227 |
+
use_column_width=True)
|
228 |
+
with col3:
|
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 = {
|