first commit

This commit is contained in:
douboer@gmail.com
2026-03-03 13:23:14 +08:00
commit 3b7c1d558a
161 changed files with 28120 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
---
layout: page
---
<script setup>
import {
VPTeamPage,
VPTeamPageTitle,
VPTeamMembers,
VPTeamPageSection
} from 'vitepress/theme';
const members = [
{
name: 'Henry Hale',
title: 'Creator',
avatar: 'https://www.github.com/henryhale.png',
org: 'xterminal',
orgLink: 'https://github.com/henryhale/xterminal',
links: [
{
icon: 'github',
link: 'https://github.com/henryhale'
},
{
icon: 'twitter',
link: 'https://twitter.com/devhenryhale'
}
]
},
];
const contributors = [
{
name: 'Enzo Notario',
title: 'Full Stack Developer',
avatar: 'https://www.github.com/enzonotario.png',
links: [
{
icon: 'github',
link: 'https://github.com/enzonotario'
},
]
}
];
</script>
<VPTeamPage>
<VPTeamPageTitle>
<template #title>Our Team</template>
<template #lead>Say hello to our awesome team.</template>
</VPTeamPageTitle>
<VPTeamMembers :members="members" />
<VPTeamPageSection>
<template #title>Contributors</template>
<template #lead>A big shout out to these awesome people</template>
<template #members>
<VPTeamMembers size="small" :members="contributors" />
</template>
</VPTeamPageSection>
</VPTeamPage>