-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathEventData.js
More file actions
106 lines (100 loc) · 2.68 KB
/
Copy pathEventData.js
File metadata and controls
106 lines (100 loc) · 2.68 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
export const currentYear = 2026
// Array of events for the current year's PyCon
export const events = [
{
date: '21-23 March 2026',
title: 'PythonAsia 2026',
location: 'De La Salle University (DLSU), Manila, Philippines',
link: 'https://2026.pythonasia.org',
countryCode: 'PH',
},
{
date: '9 May 2026',
title: 'PyCon Busan 2026',
location: 'Busan, South Korea',
link: 'https://busan.pycon.kr/2026',
countryCode: 'KR',
},
{
date: '19-21 June 2026',
title: 'PyCon SG 2026',
location: 'Singapore',
link: 'https://pycon.sg',
countryCode: 'SG',
},
{
date: '8-9 August 2026',
title: 'PyCon ID 2026',
location: 'Jakarta, Indonesia',
link: 'https://temp.pycon.id',
countryCode: 'ID',
},
{
date: '15-17 August 2026',
title: 'PyCon KR 2026',
location: 'South Korea',
link: 'https://2026.pycon.kr',
countryCode: 'KR',
},
{
date: '21-23 August 2026',
title: 'PyCon JP 2026',
location: 'Hiroshima, Japan',
link: 'https://2026.pycon.jp',
countryCode: 'JP',
},
{
date: '26-30 August 2026',
title: 'PyCon AU 2026',
location: 'Brisbane, Australia',
link: 'https://2026.pycon.org.au',
countryCode: 'AU',
},
{
date: '17-18 October 2026',
title: 'PyCon TW 2026',
location: 'Taiwan',
link: 'https://tw.pycon.org',
countryCode: 'TW',
},
{
date: '14-15 November 2026',
title: 'PyCon HK 2026',
location: 'Hong Kong',
link: 'https://www.pycon.hk',
countryCode: 'HK',
},
];
// Array of upcoming events for the next year
export const upcomingEvents = [
{
date: 'June 2027 (tentative)',
title: 'PythonAsia 2027',
location: 'Singapore',
link: 'https://pycon.sg/',
countryCode: 'SG',
},
{
date: 'June 2027 (tentative)',
title: 'PyCon TH 2027',
location: 'Thailand',
link: 'https://th.pycon.org',
countryCode: 'TH',
},
];
// 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 2027 ',
badgeText: 'FLAGSHIP REGIONAL EVENT',
badgeType: 'success',
description: "PythonAsia 2027 will be hosted in Singapore, by PyCon SG in collaboration with the Python Asia Organization (PAO).",
info: [
"June 2027 (tentative)",
"Venue: TBA"
]
},
]