-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathEventData.js
More file actions
92 lines (86 loc) · 2.4 KB
/
EventData.js
File metadata and controls
92 lines (86 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
export const currentYear = 2026
// Array of events for the current year's PyCon
export const events = [
{
date: '21-23 March',
title: 'PythonAsia 2026',
location: 'De La Salle University (DLSU), Manila, Philippines',
link: 'https://2026.pythonasia.org',
countryCode: 'PH',
},
{
date: '9 May',
title: 'PyCon Busan',
location: 'Busan, South Korea',
link: 'https://busan.pycon.kr/2026',
countryCode: 'KR',
},
{
date: '19-21 June',
title: 'PyCon SG',
location: 'Singapore',
link: 'https://pycon.sg',
countryCode: 'SG',
},
{
date: '15-17 August',
title: 'PyCon KR',
location: 'South Korea',
link: 'https://2026.pycon.kr',
countryCode: 'KR',
},
{
date: '21-23 August',
title: 'PyCon JP',
location: 'Hiroshima, Japan',
link: 'https://2026.pycon.jp',
countryCode: 'JP',
},
{
date: '26-30 August',
title: 'PyCon AU',
location: 'Brisbane, Australia',
link: 'https://2026.pycon.org.au',
countryCode: 'AU',
},
{
date: '8-9 August',
title: 'PyCon ID',
location: 'Jakarta, Indonesia',
link: 'https://temp.pycon.id',
countryCode: 'ID',
},
{
date: 'Oct-Nov',
title: 'PyCon HK',
location: 'Hong Kong',
link: 'https://www.pycon.hk',
countryCode: 'HK',
},
];
// Array of upcoming events for the next year
export const upcomingEvents = [
// e.g.
// {
// date: '1-2 March',
// title: 'PyCon APAC',
// location: 'Ateneo de Manila University, Quezon City, Philippines',
// link: 'https://pycon-apac.python.ph/',
// },
];
// Array of event slides, primarily used to showcase the incoming host for
// the upcoming PyCon APAC
export const slides = [
{
key: 1,
img: 'images/event-slide-1.png',
title: 'PythonAsia 2026 ',
badgeText: 'FLAGSHIP REGIONAL EVENT',
badgeType: 'success',
description: "PythonAsia 2026 will be proudly hosted in the Philippines, by PythonPH in collaboration with the Python Asia Organization (PAO). The same heart of PyCon APAC, now as PythonAsia.",
info: [
"2026 March 21-23",
"De La Salle University (DLSU), Malate, Metro Manila, Philippines"
]
},
]