-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from zorexsalvo/chore/event-management
Enhance Events Management
- Loading branch information
Showing
3 changed files
with
124 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// Array of events for the current year's PyCon | ||
export const events = [ | ||
{ | ||
date: '25-26 Feb', | ||
title: 'PyCon PH', | ||
location: 'Makati Sports Club, Makati City, Philippines', | ||
link: 'https://pycon-2024.python.ph', | ||
}, | ||
{ | ||
date: '24-25 Aug', | ||
title: 'PyCon MY', | ||
link: 'https://pycon.my/' | ||
}, | ||
{ | ||
date: '21-22 Sep', | ||
title: 'PyCon TW', | ||
link: 'https://tw.pycon.org/2024/' | ||
}, | ||
{ | ||
date: '20-23 Sep', | ||
title: 'PyCon India', | ||
location: 'Bengaluru, India', | ||
link: 'https://in.pycon.org/2024' | ||
}, | ||
{ | ||
date: '27-29 Sep', | ||
title: 'PyCon JP', | ||
location: 'Tokyo, Japan', | ||
link: 'https://2024.pycon.jp', | ||
}, | ||
{ | ||
date: '25-27 Oct', | ||
title: 'PyCon APAC', | ||
location: 'Yogyakarta, Indonesia', | ||
link: 'https://pycon.id', | ||
}, | ||
{ | ||
date: '26-27 Oct', | ||
title: 'PyCon KR', | ||
location: 'Suwon, South Korea', | ||
link: 'https://2024.pycon.kr/', | ||
}, | ||
{ | ||
date: '16-17 Nov', | ||
title: 'PyCon HK', | ||
location: 'Hong Kong', | ||
link: 'https://pycon.hk/2024/', | ||
}, | ||
{ | ||
date: '22-26 Nov', | ||
title: 'PyCon AU', | ||
location: 'Melbourne, Australia', | ||
link: 'https://2024.pycon.org.au/', | ||
} | ||
]; | ||
|
||
|
||
// Array of upcoming events for the next year | ||
export const upcomingEvents = [ | ||
{ | ||
date: '1-2 March', | ||
title: 'PyCon APAC', | ||
location: 'Ateneo de Manila University, Quezon City, Philippines', | ||
link: 'https://pycon-apac.python.ph/', | ||
}, | ||
{ | ||
date: '26-27 Sep', | ||
title: 'PyCon JP', | ||
location: 'Hiroshima, Japan', | ||
link: 'https://2025.pycon.jp/', | ||
} | ||
]; | ||
|
||
|
||
// 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: 'PyCon APAC 2025 ', | ||
badgeText: 'UPCOMING', | ||
badgeType: 'success', | ||
description: "PyCon APAC 2025 will be hosted by PyCon PH.", | ||
info: [ | ||
"2025 March 1-2", | ||
"Metro Manila, Philippines" | ||
] | ||
}, | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters