Skip to content

Commit

Permalink
Feat: First Version
Browse files Browse the repository at this point in the history
  • Loading branch information
acosta-leandro committed Jun 21, 2024
1 parent f1c8568 commit 7db869c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/data/people.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const people = {
chonLokLei: {
name: 'Chon Lok Lei',
image: '~assets/chonLokLei.png',
image: new URL('~assets/chonLokLei.png', import.meta.url).href,
affiliation: 'PhD, Macau',
description: 'Chon Lok Lei is an Assistant Professor in the Faculty of Health Sciences at the University of Macau. He holds a doctorate in Computational Biology from the University of Oxford, where he was a Clarendon Scholar.',
page: true,
Expand All @@ -10,23 +10,23 @@ const people = {
phdStudents: [
{
name: 'Richard Creswell',
image: '~public/maleAvatar.png',
image: new URL('~public/maleAvatar.png', import.meta.url).href,
affiliation: 'PhD student, Oxford',
description: 'Working with Ben Lambert and David Gavaghan in Oxford on developing Bayesian methods for time series problems with applications including epidemiology.',
page: false,
pageUrl: '',
},
{
name: 'Joseph Shuttleworth',
image: 'public/maleAvatar.png',
image: new URL('public/maleAvatar.png', import.meta.url).href,
affiliation: 'PhD student, Nottingham',
description: 'Working with Gary Mirams and Simon Preston in Nottingham on optimising experiments for building ion channel models.',
page: false,
pageUrl: '',
},
{
name: 'Hui Jia Farm',
image: '/public/maleAvatar.png',
image: new URL('/public/maleAvatar.png', import.meta.url).href,
affiliation: 'PhD student, Oxford',
description: 'Working with Michael Clerx in Nottingham, Fergus Cooper, David Gavaghan in Oxford, and Hoffmann-La Roche Safety Pharmacology group in Basel, Switzerland to examine drug binding effects to ion channels.',
page: false,
Expand All @@ -36,7 +36,7 @@ const people = {
currentResearchAssistants: [
{
name: 'Leandro Acosta',
image: '~maleAvatar.png',
image: new URL('~maleAvatar.png', import.meta.url).href,
affiliation: 'RA, Macau',
description: 'Developing the front end of virtual patch clamp.',
page: false,
Expand Down

0 comments on commit 7db869c

Please sign in to comment.