Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Team Page #8

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>