File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,18 +26,16 @@ export const Projects = () => {
2626 spacing = { 8 }
2727 justifyContent = { 'space-between' }
2828 >
29- { projects
30- . sort ( ( a , b ) => a . name . localeCompare ( b . name ) )
31- . map ( ( project , index ) => (
32- < ProjectCard
33- key = { index }
34- name = { project . name }
35- logo = { project . logo }
36- description = { project . description }
37- repo = { project . repo }
38- homepage = { project . homepage }
39- > </ ProjectCard >
40- ) ) }
29+ { projects . map ( ( project , index ) => (
30+ < ProjectCard
31+ key = { index }
32+ name = { project . name }
33+ logo = { project . logo }
34+ description = { project . description }
35+ repo = { project . repo }
36+ homepage = { project . homepage }
37+ > </ ProjectCard >
38+ ) ) }
4139 </ SimpleGrid >
4240 </ Box >
4341 </ Container >
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ export const Projects = [
1515 homepage : 'https://virtualship.oceanparcels.org/en/latest/' ,
1616 logo : '/projects/virtual_ship_logo.png' ,
1717 } ,
18- {
19- // TODO fix planktondrift website
20- name : 'Planktondrift' ,
21- description :
22- 'Planktondrift is a web-based platform to simulate the transport of plankton in the ocean.' ,
23- homepage : 'https://planktondrift.science.uu.nl/' ,
24- logo : '/projects/planktondrift.png' ,
25- } ,
18+ // {
19+ // // TODO fix planktondrift website
20+ // name: 'Planktondrift',
21+ // description:
22+ // 'Planktondrift is a web-based platform to simulate the transport of plankton in the ocean.',
23+ // homepage: 'https://planktondrift.science.uu.nl/',
24+ // logo: '/projects/planktondrift.png',
25+ // },
2626 {
2727 name : 'VirtualFleet' ,
2828 description :
You can’t perform that action at this time.
0 commit comments