File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -27,17 +27,16 @@ const ComingSoon = () => (
2727 < div className = "coming-soon" >
2828 < h3 className = "coming-soon-title" > Coming Soon!</ h3 >
2929 < p className = "coming-soon-text" >
30- Projects for BrainHack Vanderbilt 2025 will appear here soon.
30+ Projects for BrainHack Vanderbilt will appear here soon.
3131 Stay tuned for exciting new projects!
3232 </ p >
3333 </ div >
3434) ;
3535
3636function Projects ( ) {
37- const [ currentYear , setCurrentYear ] = useState ( "2024 " ) ;
37+ const [ currentYear , setCurrentYear ] = useState ( "2025 " ) ;
3838
39-
40- console . log ( `projectsData: ${ projectsData } ` ) ;
39+ console . log ( `projectsData: ${ projectsData } ` ) ;
4140 const years = Object . keys ( projectsData ) . sort ( ( a , b ) => b - a ) ;
4241
4342 return (
@@ -58,7 +57,7 @@ console.log(`projectsData: ${projectsData}`);
5857 />
5958 </ div >
6059
61- { currentYear === "2025" ? (
60+ { ( projectsData [ currentYear ] . length === 0 ) ? (
6261 < ComingSoon />
6362 ) : (
6463 < Row className = "project-card-row" >
You can’t perform that action at this time.
0 commit comments