File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -664,6 +664,48 @@ export default function AboutPage() {
664664 }
665665 </ p >
666666 </ div >
667+ < div className = "mb-12 grid gap-6 md:grid-cols-3" >
668+ { [
669+ {
670+ title : "gen" ,
671+ email : "generalenquiries@gmail.com" ,
672+ desc : "General Inquiries" ,
673+ icon : Mail ,
674+ } ,
675+ {
676+ title : "stu" ,
677+ email : "studentenquiries@gmail.com" ,
678+ desc : "Student Inquiries" ,
679+ icon : Users ,
680+ } ,
681+ {
682+ title : "org" ,
683+ email : "organiserenquiries@gmail.com" ,
684+ desc : "Event Organiser Inquiries" ,
685+ icon : Star ,
686+ } ,
687+ ] . map ( ( value , index ) => (
688+ < Card
689+ key = { index }
690+ className = { `${ COLORS . border . default } text-center ${ COLORS . interactive . cardHover } transition-shadow` }
691+ >
692+ < CardContent className = "pt-6" >
693+ < value . icon
694+ className = { `h-12 w-12 ${ COLORS . icon . nav } mx-auto mb-4` }
695+ />
696+ < h4 className = { `font-bold ${ COLORS . text . primary } mb-2` } >
697+ { value . desc }
698+ </ h4 >
699+ < a
700+ href = "mailto:hello@uniconnect.app"
701+ className = { `${ COLORS . text . secondary } ${ COLORS . interactive . linkHover } ` }
702+ >
703+ { value . email }
704+ </ a >
705+ </ CardContent >
706+ </ Card >
707+ ) ) }
708+ </ div >
667709 </ section >
668710 </ div >
669711 ) ;
You can’t perform that action at this time.
0 commit comments