feat: credits page

This commit is contained in:
afn
2022-10-12 02:54:07 -04:00
parent 85dd6b8a0b
commit b0ab7c126b
8 changed files with 133 additions and 63 deletions

View File

@@ -1,13 +1,20 @@
<script>
<script lang="ts">
import ContributorHost from '$lib/components/molecules/ContributorHost.svelte';
let peoples = [
"Ushie",
"afnzmn",
"baiorett",
"PickleNik",
]
</script>
<div class="wrapper">
<ContributorHost {peoples}></ContributorHost>
</div>
<div class="wrapper contrib-grid">
<ContributorHost repo="cli"/>
<ContributorHost repo="patcher"/>
<ContributorHost repo="patches"/>
<ContributorHost repo="integrations"/>
<ContributorHost repo="manager"/>
</div>
<style>
.contrib-grid {
display: flex;
flex-direction: column;
gap: 2rem;
}
</style>