-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
725 additions
and
529 deletions.
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
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,71 @@ | ||
<script setup lang="ts"> | ||
import { teamMembers } from '../contributors' | ||
</script> | ||
|
||
<template> | ||
<div class="content"> | ||
<div class="content-container"> | ||
<main class="main"> | ||
<div class="vp-doc" flex flex-col items-center mt-10> | ||
<h2 id="meet-the-team" op50 font-normal p="t-10 b-2"> | ||
Meet The Team | ||
</h2> | ||
<div grid="~ cols-1 md:cols-2 lg:cols-3 gap-x-10 gap-y-10 items-center" p-10> | ||
<TeamMember | ||
v-for="c of teamMembers" | ||
:key="c.github" | ||
v-bind="c" | ||
/> | ||
</div> | ||
<h2 id="the-team" op50 font-normal pt-5 pb-2> | ||
Contributors | ||
</h2> | ||
<p text-lg max-w-200 text-center leading-7> | ||
<Contributors /> | ||
<br> | ||
<a href="https://chat.vitest.dev" rel="noopener noreferrer">Join the community</a> and get involved! | ||
</p> | ||
|
||
<h2 id="sponsored-by" op50 font-normal pt-5 pb-2> | ||
Sponsored by | ||
</h2> | ||
<div grid="~ cols-1 lg:cols-2" w-full text-center mt-10> | ||
<div class="flex flex-col"> | ||
<a text-lg h="32px" href="https://github.com/sponsors/antfu" rel="noopener noreferrer">Anthony's Sponsors</a> | ||
<a href="https://cdn.jsdelivr.net/gh/antfu/static/sponsors.svg" target="_blank" rel="noopener noreferrer"> | ||
<img | ||
crossorigin="anonymous" | ||
inline-block | ||
width="768" height="1464" | ||
class="resizable-img" | ||
loading="lazy" | ||
src="/sponsors/antfu.svg" | ||
alt="Anthony Fu's sponsors" | ||
> | ||
</a> | ||
</div> | ||
<div class="flex flex-col"> | ||
<a text-lg h="32px" href="https://github.com/sponsors/patak-dev" rel="noopener noreferrer">Patak's Sponsors</a> | ||
<a href="https://cdn.jsdelivr.net/gh/patak-dev/static/sponsors.svg" target="_blank" rel="noopener noreferrer"> | ||
<img | ||
crossorigin="anonymous" | ||
inline-block | ||
width="768" height="722" | ||
class="resizable-img" | ||
loading="lazy" | ||
src="/sponsors/patak-dev.svg" | ||
alt="Patak's sponsors" | ||
> | ||
</a> | ||
</div> | ||
</div> | ||
<p class="text-center opacity-75"> | ||
<a href="https://www.netlify.com" rel="noopener noreferrer"> | ||
<img src="/netlify.svg" alt="Deploys by Netlify" width="114" height="151"> | ||
</a> | ||
</p> | ||
</div> | ||
</main> | ||
</div> | ||
</div> | ||
</template> |
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,59 @@ | ||
<script setup lang="ts"> | ||
import type { CoreTeam } from '../contributors' | ||
defineProps<{ | ||
avatar: CoreTeam['avatar'] | ||
name: CoreTeam['name'] | ||
github: CoreTeam['github'] | ||
twitter: CoreTeam['twitter'] | ||
sponsors: CoreTeam['sponsors'] | ||
description: CoreTeam['description'] | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<div text-left flex="~ row gap6" relative> | ||
<img | ||
loading="lazy" | ||
width="100" height="100" | ||
rounded-full min-w-25 min-h-25 h-25 w-25 | ||
inline-block | ||
:src="avatar" | ||
:alt="`${name}'s avatar`" | ||
> | ||
<div flex="~ col gap2"> | ||
<div text-2xl> | ||
{{ name }} | ||
</div> | ||
<div op60 v-html="description" /> | ||
<div flex="~ inline gap-2" text-2xl> | ||
<a | ||
class="i-carbon-logo-github inline-block !text-current op30 hover:op100 mya transition duration-200" | ||
:href="`https://github.com/${github}`" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
:aria-label="`${name} on GitHub`" | ||
/> | ||
<a | ||
v-if="twitter" | ||
class="i-carbon-logo-twitter inline-block text-1.3em mya !text-current op30 hover:op100 transition duration-200" | ||
:href="`https://twitter.com/${twitter}`" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
:aria-label="`${name} on Twitter`" | ||
/> | ||
</div> | ||
</div> | ||
<a | ||
v-if="sponsors" | ||
class="btn bg-pink-500 hover:bg-pink-600 text-sm !text-white px3 absolute top-1 right-1" | ||
flex="~ row gap-2" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
:href="`https://github.com/sponsors/${github}`" | ||
> | ||
<span class="i-carbon-favorite-filled" /> | ||
Sponsor | ||
</a> | ||
</div> | ||
</template> |
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
File renamed without changes.
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
Oops, something went wrong.