Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
26 changes: 6 additions & 20 deletions app/(home)/components/UpcomingEvents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,16 @@ interface Event {

const EVENTS: Event[] = [
{
title: 'Pycon Mini Davao',
Comment thread
seangaaab marked this conversation as resolved.
date: 'June 20, 2025',
location: 'Mugna Tech, Davao City',
title: 'Pycon Davao 2025',
date: 'October 25, 2025',
location: 'Ateneo de Davao University',
variant: 'main',
link: '/404',
},
{
title: 'RAGs & DAGs',
Comment thread
seangaaab marked this conversation as resolved.
date: 'June 20, 2025',
location: 'Mugna Tech, Davao City',
variant: 'regular',
link: '/404',
},
{
title: 'RAGs & DAGs',
date: 'June 20, 2025',
location: 'Mugna Tech, Davao City',
variant: 'regular',
link: '/404',
},
{
title: 'RAGs & DAGs',
date: 'June 20, 2025',
location: 'Mugna Tech, Davao City',
title: 'Pycon Davao Sprint Day',
Comment thread
seangaaab marked this conversation as resolved.
Outdated
date: 'October 26, 2025',
location: 'TBA',
variant: 'regular',
link: '/404',
},
Expand Down
4 changes: 2 additions & 2 deletions app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CTASection } from './components/CTASection';
import { StatsAndReviews } from './components/StatsAndReviews';
import { PythonFoundation } from './components//PythonFoundation';
import { Partners } from './components//Partners';
// import UpcomingEvents from './components//UpcomingEvents';
import UpcomingEvents from './components//UpcomingEvents';
import { Sponsors } from './components/Sponsors';

import { Testimonials } from './components/Testimonials';
Expand All @@ -19,7 +19,7 @@ export default function HomePage() {
<Testimonials />
<PythonFoundation />
<Partners />
{/* <UpcomingEvents /> */}
<UpcomingEvents />
<Sponsors />
</main>
);
Expand Down