|
1 | 1 | import Gallery from '@/components/Gallery'; |
2 | 2 |
|
3 | | -const images = [ |
4 | | - { |
5 | | - src: '/images/gallery/pyday2024_1.webp', |
6 | | - alt: 'Presentación PyDay 2024', |
7 | | - caption: 'Charla inaugural PyDay 2024', |
8 | | - location: 'Universidad de Chile, Santiago', |
9 | | - year: '2024' |
10 | | - }, |
11 | | - { |
12 | | - src: '/images/gallery/pyday2024_2.webp', |
13 | | - alt: 'Taller Python Concurrente', |
14 | | - caption: 'Taller de Python Concurrente', |
15 | | - location: 'Universidad Católica de Valparaíso', |
16 | | - year: '2024' |
17 | | - }, |
18 | | - { |
19 | | - src: '/images/gallery/pyday2024_3.webp', |
20 | | - alt: 'Mesa redonda', |
21 | | - caption: 'Mesa redonda: Futuro de Python en Chile', |
22 | | - location: 'Universidad de Concepción', |
23 | | - year: '2024' |
24 | | - }, |
25 | | - { |
26 | | - src: '/images/gallery/pyday2023_1.webp', |
27 | | - alt: 'Público PyDay 2023', |
28 | | - caption: 'Público asistente a PyDay 2023', |
29 | | - location: 'Universidad Andrés Bello, Santiago', |
30 | | - year: '2023' |
31 | | - }, |
32 | | - { |
33 | | - src: '/images/gallery/pyday2023_2.webp', |
34 | | - alt: 'Hackathon PyDay 2023', |
35 | | - caption: 'Hackathon PyDay 2023', |
36 | | - location: 'Campus San Joaquín, Santiago', |
37 | | - year: '2023' |
38 | | - }, |
39 | | - { |
40 | | - src: '/images/gallery/pyday2023_3.webp', |
41 | | - alt: 'Charla Machine Learning', |
42 | | - caption: 'Charla sobre Machine Learning con Python', |
43 | | - location: 'Universidad de Valparaíso', |
44 | | - year: '2023' |
45 | | - }, |
46 | | - { |
47 | | - src: '/images/gallery/pyday2022_1.webp', |
48 | | - alt: 'PyDay 2022 Inauguración', |
49 | | - caption: 'Ceremonia de apertura PyDay 2022', |
50 | | - location: 'Universidad Técnica Federico Santa María, Valparaíso', |
51 | | - year: '2022' |
52 | | - }, |
53 | | - { |
54 | | - src: '/images/gallery/pyday2022_2.webp', |
55 | | - alt: 'Networking PyDay 2022', |
56 | | - caption: 'Networking post-evento', |
57 | | - location: 'Universidad de Chile, Santiago', |
58 | | - year: '2022' |
59 | | - }, |
60 | | - { |
61 | | - src: '/images/gallery/pyday2022_3.webp', |
62 | | - alt: 'Taller Data Science', |
63 | | - caption: 'Taller práctico de Data Science', |
64 | | - location: 'Universidad Andrés Bello, Viña del Mar', |
65 | | - year: '2022' |
66 | | - }, |
67 | | - { |
68 | | - src: '/images/gallery/pyday2021_1.webp', |
69 | | - alt: 'PyDay 2021 Virtual', |
70 | | - caption: 'Primera edición virtual de PyDay Chile', |
71 | | - location: 'Online', |
72 | | - year: '2021' |
73 | | - }, |
74 | | - { |
75 | | - src: '/images/gallery/pyday2021_2.webp', |
76 | | - alt: 'Presentación Django', |
77 | | - caption: 'Charla sobre desarrollo web con Django', |
78 | | - location: 'Online', |
79 | | - year: '2021' |
80 | | - }, |
81 | | - { |
82 | | - src: '/images/gallery/pyday2021_3.webp', |
83 | | - alt: 'Workshop virtual', |
84 | | - caption: 'Workshop de Python para principiantes', |
85 | | - location: 'Online', |
86 | | - year: '2021' |
87 | | - } |
88 | | -]; |
89 | | - |
90 | | -const videos = [ |
91 | | - { |
92 | | - id: 'video1', |
93 | | - title: 'PyDay Valparaíso', |
94 | | - thumbnail: '/images/videos/keynote_thumbnail.webp', |
95 | | - url: 'https://www.youtube.com/embed/6AWDEZY_iZI', |
96 | | - speaker: 'Gonzalo Peña-Castellanos', |
97 | | - year: '2024' |
98 | | - }, |
99 | | - { |
100 | | - id: 'video2', |
101 | | - title: 'PyDay Copiapó', |
102 | | - thumbnail: '/images/videos/datascience_thumbnail.webp', |
103 | | - url: 'https://www.youtube.com/embed/4t-z5oVGIAA', |
104 | | - speaker: 'María Rodríguez', |
105 | | - year: '2024' |
106 | | - }, |
107 | | - { |
108 | | - id: 'video3', |
109 | | - title: 'Desarrollo web moderno con FastAPI', |
110 | | - thumbnail: '/images/videos/fastapi_thumbnail.webp', |
111 | | - url: 'https://www.youtube.com/embed/m3v8Ah5NOSQ', |
112 | | - speaker: 'Carlos Villegas', |
113 | | - year: '2023' |
114 | | - }, |
115 | | - { |
116 | | - id: 'video4', |
117 | | - title: 'Python en el Internet de las Cosas', |
118 | | - thumbnail: '/images/videos/iot_thumbnail.webp', |
119 | | - url: 'https://www.youtube.com/embed/Dy0SSE8uk-Y', |
120 | | - speaker: 'Laura Gómez', |
121 | | - year: '2021' |
122 | | - } |
123 | | -]; |
| 3 | +const { images, videos } = require('@/data/multimedia'); |
124 | 4 |
|
125 | 5 | export default function MultimediaPage() { |
126 | 6 | return ( |
|
0 commit comments