@@ -2,8 +2,8 @@ import { Container } from '@/components/ui/container';
22import React from 'react' ;
33import EventCard from './EventCard' ;
44import CountdownTimer from './CountdownTimer' ;
5- import { Button } from '@/components/ui/button' ;
6- import Link from 'next/link' ;
5+ // import { Button } from '@/components/ui/button';
6+ // import Link from 'next/link';
77
88interface Event {
99 title : string ;
@@ -19,14 +19,14 @@ const EVENTS: Event[] = [
1919 date : 'October 25, 2025' ,
2020 location : 'Ateneo de Davao University' ,
2121 variant : 'main' ,
22- link : '/404' ,
22+ link : '' , // TODO: Update Link
2323 } ,
2424 {
2525 title : 'PyCon Davao Sprint Day' ,
2626 date : 'October 26, 2025' ,
2727 location : 'TBA' ,
2828 variant : 'regular' ,
29- link : '/404' ,
29+ link : '' , // TODO: Update Link
3030 } ,
3131] ;
3232
@@ -54,9 +54,9 @@ const UpcomingEvents = () => {
5454 </ div >
5555
5656 { /* See more Events Button */ }
57- < Button className = "bg-primary hover:bg-primary mx-auto max-w-[80%] lg:max-w-[80%] md:max-w-[80%] w-full md:py-2 xl:py-4 md:font-medium text-dark-green lg:py-4 lg:text-[15px] py-[4px] font-semibold text-[11px] xl:text-2xl xl:max-w-full" >
57+ { /* <Button className="bg-primary hover:bg-primary mx-auto max-w-[80%] lg:max-w-[80%] md:max-w-[80%] w-full md:py-2 xl:py-4 md:font-medium text-dark-green lg:py-4 lg:text-[15px] py-[4px] font-semibold text-[11px] xl:text-2xl xl:max-w-full">
5858 <Link href="/404">See More Events</Link>
59- </ Button >
59+ </Button> */ }
6060 </ Container >
6161 ) ;
6262} ;
0 commit comments