Update modules/ui/ui.py
Browse files- modules/ui/ui.py +8 -8
modules/ui/ui.py
CHANGED
@@ -205,15 +205,14 @@ def is_institutional_email(email):
|
|
205 |
|
206 |
def display_videos_and_info(lang_code, t):
|
207 |
# Crear tabs para cada secci贸n
|
208 |
-
|
209 |
-
"
|
210 |
-
"
|
211 |
-
"
|
212 |
-
"
|
213 |
])
|
214 |
|
215 |
-
# Tab de
|
216 |
-
# Tab de Galer铆a
|
217 |
with tab_gallery:
|
218 |
col1, col2 = st.columns(2)
|
219 |
with col1:
|
@@ -222,7 +221,8 @@ def display_videos_and_info(lang_code, t):
|
|
222 |
with col2:
|
223 |
st.image("assets/img/socialmedia/_MG_2790.jpg", caption="MakerFaire CDMX 2023", use_column_width=True)
|
224 |
st.image("assets/img/socialmedia/_MG_2587.jpg", caption="MakerFaire CDMX 2023", use_column_width=True)
|
225 |
-
|
|
|
226 |
with tab_videos:
|
227 |
videos = {
|
228 |
"Reel AIdeaText": "https://youtu.be/UA-md1VxaRc",
|
|
|
205 |
|
206 |
def display_videos_and_info(lang_code, t):
|
207 |
# Crear tabs para cada secci贸n
|
208 |
+
tab_gallery, tab_videos, tab_events, tab_news = st.tabs([
|
209 |
+
"Fotos de eventos",
|
210 |
+
"Videos de presentaciones",
|
211 |
+
"Ponencias acad茅micas",
|
212 |
+
"Control de versiones"
|
213 |
])
|
214 |
|
215 |
+
# Tab de Galer铆a
|
|
|
216 |
with tab_gallery:
|
217 |
col1, col2 = st.columns(2)
|
218 |
with col1:
|
|
|
221 |
with col2:
|
222 |
st.image("assets/img/socialmedia/_MG_2790.jpg", caption="MakerFaire CDMX 2023", use_column_width=True)
|
223 |
st.image("assets/img/socialmedia/_MG_2587.jpg", caption="MakerFaire CDMX 2023", use_column_width=True)
|
224 |
+
|
225 |
+
# Tab de Videos
|
226 |
with tab_videos:
|
227 |
videos = {
|
228 |
"Reel AIdeaText": "https://youtu.be/UA-md1VxaRc",
|