Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions src/views/events/Events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default function Events() {
link: 'https://pycon.id',
},
{
date: '25-27 Oct',
date: '26-27 Oct',
title: 'PyCon KR',
location: 'Suwon, South Korea',
link: 'https://2024.pycon.kr/',
Expand All @@ -126,7 +126,19 @@ export default function Events() {

];

const eventsNextYear: any = [];
const eventsNextYear: any = [
{
date: '1-2 March',
title: 'PyCon APAC',
location: 'Ateneo de Manila University,Quezon City, Philippines',
},
{
date: '26-27 Sep',
title: 'PyCon JP',
location: 'Hiroshima, Japan',
link: 'https://2025.pycon.jp/',
}
];

return (
<div className="events-container">
Expand Down