-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from ml-comm/docs/ui-fixes
docs: minor docs changes
- Loading branch information
Showing
2 changed files
with
70 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
layout: page | ||
--- | ||
<script setup> | ||
import { | ||
VPTeamPage, | ||
VPTeamPageTitle, | ||
VPTeamMembers | ||
} from 'vitepress/theme' | ||
|
||
const members = [ | ||
{ | ||
avatar: 'https://github.com/smanitech.png', | ||
name: 'Suraj Mani', | ||
title: 'Community Organizer', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/smanitech' }, | ||
{ icon: 'twitter', link: 'https://twitter.com/smanitech' } | ||
] | ||
}, | ||
{ | ||
avatar: 'https://github.com/BRAVO68WEB.png', | ||
name: 'Jyotirmoy Bandyopadhayaya', | ||
title: 'Project Maintainer', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/BRAVO68WEB' }, | ||
{ icon: 'vercel', link: 'https://b68.dev' } | ||
] | ||
}, | ||
{ | ||
avatar: 'https://github.com/Ba3a-G.png', | ||
name: 'Aryan Kumar', | ||
title: 'Project Maintainer', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/Ba3a-G' }, | ||
{ icon: 'linkedin', link: 'https://linkedin.com/in/ba3a' } | ||
] | ||
} | ||
] | ||
</script> | ||
|
||
<VPTeamPage> | ||
<VPTeamPageTitle> | ||
<template #title> | ||
Our Team | ||
</template> | ||
<template #lead> | ||
Meet the team behind the project. | ||
</template> | ||
</VPTeamPageTitle> | ||
<VPTeamMembers | ||
:members="members" | ||
/> | ||
</VPTeamPage> |