PaiGramDocs/docs/.vitepress/theme/components/HomeContributors.vue

26 lines
735 B
Vue
Raw Normal View History

2023-10-20 17:15:41 +00:00
<script setup lang="ts">
import { contributors } from '../../../contributors'
</script>
<template>
<div class="vp-doc mx-auto">
<h2 op50 font-normal pt-5 text-center>
Contributors
</h2>
</div>
<div text-lg max-w-100 text-center leading-7 p-10 mx-auto>
<div flex="~ wrap gap-1" justify-center>
<a
v-for="{ name, avatar } of contributors" :key="name" :href="`https://github.com/${name}`" target="_blank" m-0
rel="noopener noreferrer" :aria-label="`${name} on GitHub`"
>
<img
loading="lazy" :src="avatar" width="40" height="40" rounded-full min-w-10 min-h-10 h-10 w-10
:alt="`${name}'s avatar`"
>
</a>
</div>
<br>
</div>
</template>