This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 137
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
74 changed files
with
360 additions
and
161 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 was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<template> | ||
<c-box> | ||
<c-heading> | ||
Core contributors | ||
</c-heading> | ||
|
||
<c-text my="3"> | ||
Special thanks to these people that helped contribute towards Chakra UI Vue. | ||
</c-text> | ||
|
||
<c-box> | ||
<c-box v-for="(person, _i) in contributors" :key="_i" bb="1px solid" border-color="gray.200" p="3"> | ||
<c-text font-weight="bold" mt="3" font-size="1.3rem"> | ||
{{ person.name }} {{ person.nationality }} | ||
</c-text> | ||
<c-text font-style="italic"> | ||
{{ person.contributions }} | ||
</c-text> | ||
<c-link | ||
font-size="1.5rem" | ||
margin-right="3" | ||
color="black" | ||
:_hover="{ color: 'vue.400' }" | ||
is-external | ||
:href="person.twitter" | ||
> | ||
<c-icon name="twitter" /> | ||
</c-link> | ||
<c-link | ||
font-size="1.5rem" | ||
margin-right="3" | ||
color="black" | ||
:_hover="{ color: 'vue.400' }" | ||
is-external | ||
:href="person.github" | ||
> | ||
<c-icon name="github" /> | ||
</c-link> | ||
<c-link | ||
font-size="1.5rem" | ||
margin-right="3" | ||
color="black" | ||
:_hover="{ color: 'vue.400' }" | ||
is-external | ||
:href="person.website" | ||
> | ||
<c-icon name="globe-africa" /> | ||
</c-link> | ||
</c-box> | ||
</c-box> | ||
</c-box> | ||
</template> | ||
|
||
<script> | ||
import { CBox, CHeading, CText, CLink, CIcon } from '@chakra-ui/vue' | ||
export default { | ||
name: 'Contributors', | ||
components: { | ||
CBox, | ||
CHeading, | ||
CText, | ||
CLink, | ||
CIcon | ||
}, | ||
data () { | ||
return { | ||
contributors: [{ | ||
name: 'Jonathan Bakebwa', | ||
github: 'https://github.com/codebender828', | ||
twitter: 'https://twitter.com/codebender828', | ||
website: 'https://jbakebwa.dev', | ||
contributions: 'Creator & Maintainer', | ||
nationality: '🇺🇬' | ||
}, | ||
{ | ||
name: 'Kelvin Omereshone', | ||
github: 'https://github.com/DominusKelvin', | ||
twitter: 'https://twitter.com/dominus_kelvin', | ||
website: 'https://dominus.dev', | ||
contributions: 'Documentation', | ||
nationality: '🇳🇬' | ||
}, | ||
{ | ||
name: 'Mesut Koca', | ||
github: 'https://github.com/koca', | ||
twitter: 'https://twitter.com/imesutkoca', | ||
website: 'https://mesut.dev', | ||
contributions: 'Testing & Code', | ||
nationality: '🇹🇷' | ||
}] | ||
} | ||
} | ||
} | ||
</script> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# 可访问性 | ||
|
Oops, something went wrong.