Skip to content

Commit f6be371

Browse files
committed
feat: updated hidden component and set pycon davao 2025 date
1 parent f1b38b7 commit f6be371

2 files changed

Lines changed: 8 additions & 22 deletions

File tree

app/(home)/components/UpcomingEvents.tsx

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,16 @@ interface Event {
1515

1616
const EVENTS: Event[] = [
1717
{
18-
title: 'Pycon Mini Davao',
19-
date: 'June 20, 2025',
20-
location: 'Mugna Tech, Davao City',
18+
title: 'Pycon Davao',
19+
date: 'October 25, 2025',
20+
location: 'Ateneo de Davao University',
2121
variant: 'main',
2222
link: '/404',
2323
},
2424
{
25-
title: 'RAGs & DAGs',
26-
date: 'June 20, 2025',
27-
location: 'Mugna Tech, Davao City',
28-
variant: 'regular',
29-
link: '/404',
30-
},
31-
{
32-
title: 'RAGs & DAGs',
33-
date: 'June 20, 2025',
34-
location: 'Mugna Tech, Davao City',
35-
variant: 'regular',
36-
link: '/404',
37-
},
38-
{
39-
title: 'RAGs & DAGs',
40-
date: 'June 20, 2025',
41-
location: 'Mugna Tech, Davao City',
25+
title: 'Pycon Davao Day 2',
26+
date: 'October 26, 2025',
27+
location: 'TBA',
4228
variant: 'regular',
4329
link: '/404',
4430
},

app/(home)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { CTASection } from './components/CTASection';
44
import { StatsAndReviews } from './components/StatsAndReviews';
55
import { PythonFoundation } from './components//PythonFoundation';
66
import { Partners } from './components//Partners';
7-
// import UpcomingEvents from './components//UpcomingEvents';
7+
import UpcomingEvents from './components//UpcomingEvents';
88
import { Sponsors } from './components/Sponsors';
99

1010
import { Testimonials } from './components/Testimonials';
@@ -19,7 +19,7 @@ export default function HomePage() {
1919
<Testimonials />
2020
<PythonFoundation />
2121
<Partners />
22-
{/* <UpcomingEvents /> */}
22+
<UpcomingEvents />
2323
<Sponsors />
2424
</main>
2525
);

0 commit comments

Comments
 (0)