Skip to content

Commit 55e696b

Browse files
authored
remove main team/adv. board member sections
1 parent 7057164 commit 55e696b

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

src/pages/home/People.jsx

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,6 @@ export default function People({homeStyles, ...props}) {
105105
image: "/sitestatic/people/nuijten-hires.png",
106106
name: "Michèle Nuijten",
107107
affiliation: "Tilburg University",
108-
},
109-
{
110-
url: "http://publish.uwo.ca/~lcampb23/index.html",
111-
image: "/sitestatic/people/campbell-hires.png",
112-
name: "Lorne Campbell",
113-
affiliation: "University of Western Ontario",
114108
}
115109
]
116110

@@ -120,19 +114,19 @@ export default function People({homeStyles, ...props}) {
120114
People
121115
</Typography>
122116

123-
<Typography variant="h2" className={homeStyles.subsectionTitle} align="center" style={{ marginTop: '2rem' }}>
117+
<Typography variant="h2" className={homeStyles.subsectionTitle} align="center" style={{ marginTop: '2rem', display: 'none' }}>
124118
Main Team
125119
</Typography>
126120

127-
<Grid container>
121+
<Grid container style={{ display: 'none' }}>
128122
{ MAIN_TEAM.map((person) => { return <Person person={person} key={person.image}/> }) }
129123
</Grid>
130124

131-
<Typography variant="h2" className={homeStyles.subsectionTitle} align="center" style={{ marginTop: '2rem' }}>
125+
<Typography variant="h2" className={homeStyles.subsectionTitle} align="center" style={{ marginTop: '2rem', display: 'none' }}>
132126
Advisory Board (2018 - 2020)
133127
</Typography>
134128

135-
<Grid container>
129+
<Grid container style={{ display: 'none' }}>
136130
{ ADVISORS.map((person) => { return <Person person={person} key={person.image}/> }) }
137131
</Grid>
138132
</div>

0 commit comments

Comments
 (0)