Skip to content

Commit 2f6626f

Browse files
committed
Remove collaborators list
1 parent c45ab58 commit 2f6626f

File tree

3 files changed

+4
-86
lines changed

3 files changed

+4
-86
lines changed

data/team.js

Lines changed: 1 addition & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -79,69 +79,4 @@ const board = [
7979
['Tracy Teal', 'Nixtla'],
8080
]
8181

82-
const collaborators = [
83-
['Bill Anderegg', 'University of Utah'],
84-
[
85-
<span>
86-
Anna Trugman
87-
<br />
88-
Iris Holzer
89-
</span>,
90-
'UC Santa Barbara',
91-
],
92-
['Barbara Haya', 'UC Berkeley'],
93-
[
94-
<span>
95-
Jennifer Wilcox
96-
<br />
97-
Noah McQueen
98-
<br />
99-
Caleb Woodall
100-
<br />
101-
HÉLÈNE PILORGÉ
102-
<br />
103-
Ben Kolosz
104-
<br />
105-
</span>,
106-
'University of Pennsylvania',
107-
],
108-
['Jane Zelikova', 'University of Wyoming'],
109-
[
110-
<span>
111-
Andrew Bergman
112-
<br />
113-
Toly Rinberg
114-
</span>,
115-
'Harvard University',
116-
],
117-
[
118-
<span>
119-
Jennifer Pett-Ridge
120-
<br />
121-
Eric Slessarev
122-
<br />
123-
Noah Sokol
124-
</span>,
125-
'Lawrence Livermore National Laboratory',
126-
],
127-
[
128-
<span>
129-
Jonny Black
130-
<br />
131-
Richard Roche
132-
</span>,
133-
'Ordinary Things',
134-
],
135-
[
136-
<span>
137-
Jon Wang
138-
<br />
139-
Julianne DeAngelo
140-
<br />
141-
Steven Davis
142-
</span>,
143-
'UC Irvine',
144-
],
145-
]
146-
147-
export { team, board, collaborators }
82+
export { team, board }

pages/team.js

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Box, Image, Divider, Link, Grid } from 'theme-ui'
22
import { Layout, Row, Column, Heading, Avatar } from '@carbonplan/components'
33
import AnnotatedTable from '../components/annotated-table'
4-
import { team, board, collaborators } from '../data/team'
4+
import { team, board } from '../data/team'
55

66
const colors = ['red', 'orange', 'yellow', 'pink']
77

@@ -11,9 +11,7 @@ const Team = () => {
1111
links={'homepage'}
1212
title={'Team – CarbonPlan'}
1313
nav={'team'}
14-
description={
15-
'Meet our core team, our Board of Directors, and our collaborators.'
16-
}
14+
description={'Meet our core team and our Board of Directors.'}
1715
>
1816
<Heading
1917
sidenote={
@@ -71,21 +69,6 @@ const Team = () => {
7169
<Box sx={{ mb: [3, 4, 5, 6] }}>
7270
<AnnotatedTable heading='Board' data={board} />
7371
</Box>
74-
<Row>
75-
<Column start={[1, 2]} width={[6, 8, 10, 10]}>
76-
<Divider sx={{ my: [0] }} />
77-
</Column>
78-
</Row>
79-
<AnnotatedTable
80-
heading='Collaborators'
81-
data={collaborators}
82-
sidenote={
83-
<span>
84-
Interested in working together?{' '}
85-
<Link href='mailto:hello@carbonplan.org'>Email us</Link>.
86-
</span>
87-
}
88-
/>
8972
</Layout>
9073
)
9174
}

pages/thanks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const Thanks = () => {
8080
<Column start={[1, 7]} width={[3, 4, 2, 2]}>
8181
<Box sx={{ fontSize: [3, 3, 3, 4], mb: [3, 3, 0] }}>
8282
<Callout href='/team' label='team'>
83-
Read about our team and collaborators
83+
Read about our team
8484
</Callout>
8585
</Box>
8686
</Column>

0 commit comments

Comments
 (0)