finish about page

This commit is contained in:
ZanzyTHEbar 2023-01-06 22:29:56 +00:00
parent 155f036ea6
commit ef951c3ae6
2 changed files with 19 additions and 1 deletions

View File

@ -19,7 +19,9 @@ import { members, contributors } from '../static/members'
</template> </template>
<template #lead> <template #lead>
The development of EyeTrackVR is guided by an international The development of EyeTrackVR is guided by an international
team, some of whom have chosen to be featured below. team, some of whom have chosen to be featured below.<br>
<br>
EyeTrackVR developers are a group of people who are passionate about the field of augmented and virtual reality.
</template> </template>
</VPTeamPageTitle> </VPTeamPageTitle>
<VPTeamMembers <VPTeamMembers
@ -33,4 +35,16 @@ import { members, contributors } from '../static/members'
<VPTeamMembers size="small" :members="contributors" /> <VPTeamMembers size="small" :members="contributors" />
</template> </template>
</VPTeamPageSection> </VPTeamPageSection>
<VPTeamPageSection>
<template #title>Philosophy</template>
<template #lead>
The <a class="custom-links" href="/intro" target="_blank">guides</a> on this website include some of our teams own notes (not all of them are polished) that we disclose for other people to use.<br>
<br>
Here, we hope you may find something useful to you.<br>
<br>
We advocate the <a class="custom-links" href="https://en.wikipedia.org/wiki/Open-source_model" target="_blank">Open Source model</a>.<br>
<br>
This is why we strive to make our work open to other people for consultation, replication and reuse.
</template>
</VPTeamPageSection>
</VPTeamPage> </VPTeamPage>

View File

@ -4,4 +4,8 @@
column-gap: 50px; column-gap: 50px;
row-gap: 50px; row-gap: 50px;
} }
.custom-links {
@apply dark:text-blue-400 text-blue-800 hover:underline
}
} }