Skip to content

Commit

Permalink
Completed Team page
Browse files Browse the repository at this point in the history
  • Loading branch information
BT-Creator committed Jul 23, 2024
1 parent 1c1380c commit e2043da
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 20 deletions.
8 changes: 0 additions & 8 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,5 @@ hero:
- theme: alt
text: Meet the team
link: /team

features:
- title: Feature A
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
- title: Feature B
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
- title: Feature C
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
---

Binary file added public/images/bo-robbrecht.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/christophe-leroy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/friedrich-vandenberghe.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/victor-barra.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 44 additions & 12 deletions team.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,65 @@ layout: page
import {
VPTeamPage,
VPTeamPageTitle,
VPTeamMembers
VPTeamMembers,
VPTeamPageSection
} from 'vitepress/theme'

const members = [
{
avatar: 'https://www.github.com/yyx990803.png',
name: 'Evan You',
title: 'Creator',
avatar: 'images/friedrich-vandenberghe.jpg',
name: 'Fredrich Vanderberghe',
title: 'Student',
links: [
{ icon: 'github', link: 'https://github.com/yyx990803' },
{ icon: 'twitter', link: 'https://twitter.com/youyuxi' }
{ icon: 'github', link: 'https://github.com/Zelzahn' },
{ icon: 'linkedin', link: 'https://www.linkedin.com/in/friedrich-vandenberghe-97093a228/' },
{ icon: 'mastodon', link: 'https://computerclub.social/@zelzahn' }
]
},
{
avatar: 'images/bo-robbrecht.jpg',
name: 'Bo Robbrecht',
title: 'Student',
links: [
{ icon: 'github', link: 'https://github.com/BT-Creator' },
{ icon: 'linkedin', link: 'https://www.linkedin.com/in/borobbrecht' },
]
},
{
avatar: 'images/victor-barra.jpg',
name: 'Victor Barra',
title: 'Student',
links: [
{ icon: 'twitter', link: 'https://twitter.com/VictorBarraa'},
{ icon: 'instagram', link: 'https://www.instagram.com/victor.barra.33/'},
{ icon: 'github', link: 'https://github.com/Vicba' },
{ icon: 'linkedin', link: 'http://linkedin.com/in/victor-barra' },
]
},
{
avatar: 'images/christophe-leroy.jpg',
name: 'Christophe Leroy',
title: 'Student',
links: [
{ icon: 'linkedin', link: 'https://www.linkedin.com/in/kyngstudio/' }
]
}
]
</script>

<VPTeamPage>
<VPTeamPageTitle>
<template #title>
Our Team
Meet the LOAMA team!
</template>
<template #lead>
The development of VitePress is guided by an international
team, some of whom have chosen to be featured below.
The development of LOAMA was created by these brilliant students & coaches:
</template>
</VPTeamPageTitle>
<VPTeamMembers
:members="members"
/>
<VPTeamPageSection>
<template #title>Core Team</template>
<template #members>
<VPTeamMembers :members="members" />
</template>
</VPTeamPageSection>
</VPTeamPage>

0 comments on commit e2043da

Please sign in to comment.