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 20, 2024
1 parent 6ff86dd commit 4d6c682
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/components/PeopleItemLarge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const props = defineProps({
<div class="column col-xs-12 col-md-6 q-pa-sm">
<div class="row q-card--bordered rounded-borders text-center bg-primary text-white">
<div class="col-xs-12 col-md-6 row items-center">
<img :src="props.people.image" alt="" class="rounded-borders" style="max-width: 50%; height: auto">
<q-img :src="props.people.image" alt="" class="rounded-borders" style="max-width: 50%; height: auto"/>
<img :src="~props.people.image" alt="" class="rounded-borders" style="max-width: 50%; height: auto">
<q-img :src="~props.people.image" alt="" class="rounded-borders" style="max-width: 50%; height: auto"/>
</div>
<div class="col-xs-12 col-md-6 q-py-md justify-evenly column">
<div>
Expand Down
10 changes: 5 additions & 5 deletions src/data/people.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ const people = {
phdStudents: [
{
name: 'Richard Creswell',
image: '~/maleAvatar.png',
image: '~public/maleAvatar.png',
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: '/maleAvatar.png',
image: 'public/maleAvatar.png',
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: 'maleAvatar.png',
image: '/public/maleAvatar.png',
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 @@ -44,7 +44,7 @@ const people = {
},
{
name: 'Owen Hailong Chen',
image: '/maleAvatar.png',
image: '~public/maleAvatar.png',
affiliation: 'RA, Macau',
description: 'Developing the back end of the virtual patch clamp.',
page: false,
Expand All @@ -54,7 +54,7 @@ const people = {
currentMasterStudents: [
{
name: 'Jintai Du',
image: '/maleAvatar.png',
image: '~/public/maleAvatar.png',
affiliation: 'MSc student, Macau',
description: 'Data Science in Precision Medicine',
page: false,
Expand Down

0 comments on commit 4d6c682

Please sign in to comment.