Skip to content

Commit

Permalink
Merge pull request #23 from hanlee55/patch-1
Browse files Browse the repository at this point in the history
Remove 2024 events and Add PyCon Korea 2025
  • Loading branch information
darjeeling authored Feb 25, 2025
2 parents 1166ddd + 9651f3a commit 087837d
Showing 1 changed file with 18 additions and 57 deletions.
75 changes: 18 additions & 57 deletions src/views/events/EventData.js
Original file line number Diff line number Diff line change
@@ -1,62 +1,5 @@
// 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',
Expand All @@ -68,10 +11,28 @@ export const upcomingEvents = [
title: 'PyCon JP',
location: 'Hiroshima, Japan',
link: 'https://2025.pycon.jp/',
},
{
date: '15-17 August',
title: 'PyCon KR',
location: 'Dongguk University, Seoul, South Korea',
link: 'https://2025.pycon.kr/',
}
];


// 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 = [
Expand Down

0 comments on commit 087837d

Please sign in to comment.