mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-06-03 06:19:17 +08:00
38 lines
653 B
Markdown
38 lines
653 B
Markdown
---
|
|
layout: page
|
|
---
|
|
|
|
<script setup>
|
|
import {
|
|
VPTeamPage,
|
|
VPTeamPageTitle,
|
|
VPTeamMembers
|
|
} from 'vitepress/theme'
|
|
|
|
const members = [
|
|
{
|
|
avatar: 'https://www.github.com/fonghehe.png',
|
|
name: 'Evan Fong',
|
|
title: 'Creator',
|
|
links: [
|
|
{ icon: 'github', link: 'https://github.com/fonghehe' },
|
|
{ icon: 'twitter', link: 'https://twitter.com/youyuxi' }
|
|
]
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<p style="margin-bottom:50px;">
|
|
<img src="https://cdn.jsdelivr.net/gh/fonghehe/picture/personal/account.jpg" width="300" >
|
|
</p>
|
|
|
|
<p>
|
|
<img src="https://cdn.jsdelivr.net/gh/fonghehe/picture/personal/group.jpg" width="300" >
|
|
</p>
|
|
|
|
<style scoped>
|
|
img{
|
|
margin:0 auto;
|
|
}
|
|
</style>
|