Skip to content

Commit 8f3e926

Browse files
Do not sort projects; and drop planktondrift for now (until fixed)
1 parent caf1f76 commit 8f3e926

2 files changed

Lines changed: 18 additions & 20 deletions

File tree

src/components/projects.js

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff 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>

src/data/projects.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)