-
Notifications
You must be signed in to change notification settings - Fork 161
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
21 changed files
with
594 additions
and
149 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,37 @@ | ||
import { IconProps } from '@iconify/react' | ||
|
||
const SKILLS: IconProps[] = [ | ||
{ | ||
icon: 'logos:vue', | ||
style: { left: '1%', top: '1%' }, | ||
}, | ||
{ | ||
icon: 'logos:nuxt-icon', | ||
style: { left: '4%', top: '5%' }, | ||
}, | ||
|
||
{ | ||
icon: 'logos:react', | ||
style: { right: '2%', top: '11%' }, | ||
}, | ||
{ | ||
icon: 'logos:nextjs-icon', | ||
style: { right: '8%', top: '14%' }, | ||
}, | ||
|
||
{ | ||
icon: 'logos:javascript', | ||
style: { top: '5%', left: '54%' }, | ||
}, | ||
{ | ||
icon: 'logos:typescript-icon', | ||
style: { top: '9%', left: '60%' }, | ||
}, | ||
|
||
{ | ||
icon: 'logos:nodejs-icon-alt', | ||
style: { top: '14%', left: '30%' }, | ||
}, | ||
{ | ||
icon: 'logos:nestjs', | ||
style: { top: '19%', left: '38%' }, | ||
}, | ||
{ | ||
icon: 'logos:prisma', | ||
style: { top: '24%', left: '50%' }, | ||
}, | ||
{ | ||
icon: 'logos:postgresql', | ||
style: { top: '26%', left: '60%' }, | ||
}, | ||
|
||
{ | ||
icon: 'logos:tailwindcss-icon', | ||
style: { top: '30%', left: '90%' }, | ||
}, | ||
|
||
{ | ||
icon: 'logos:visual-studio-code', | ||
style: { bottom: '25%', right: '5%' }, | ||
}, | ||
{ | ||
icon: 'logos:docusaurus', | ||
style: { bottom: '1%', left: '1%' }, | ||
}, | ||
// To find new icons, visit https://simpleicons.org/ | ||
const SKILLS = [ | ||
'docusaurus', | ||
'typescript', | ||
'javascript', | ||
'react', | ||
'vue', | ||
'android', | ||
'html5', | ||
'css3', | ||
'tailwindcss', | ||
'shadcnui', | ||
'nodedotjs', | ||
'nextdotjs', | ||
'nuxtdotjs', | ||
'express', | ||
'nestjs', | ||
'hono', | ||
'electron', | ||
'prisma', | ||
'postgresql', | ||
'redis', | ||
'nginx', | ||
'vercel', | ||
'jest', | ||
'cypress', | ||
'docker', | ||
'git', | ||
'github', | ||
'visualstudiocode', | ||
'androidstudio', | ||
'figma', | ||
'python', | ||
'langchain', | ||
] | ||
|
||
export default SKILLS |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import Translate from '@docusaurus/Translate' | ||
|
||
import { Icon } from '@iconify/react' | ||
|
||
export default function Skill({ className }: { className?: string }) { | ||
return ( | ||
<div className={className}> | ||
<h2 className="mb-2 flex items-center gap-1 text-base"> | ||
<Icon icon="ri:github-line" /> | ||
<Translate id="homepage.feature.github.title">Github</Translate> | ||
</h2> | ||
<div className="relative flex w-full items-center justify-center overflow-hidden bg-background p-4"> | ||
<img | ||
src="https://metrics.lecoq.io/kuizuo?template=classic&base=header%2C%20activity%2C%20community%2C%20repositories%2C%20metadata&base.indepth=false&base.hireable=false&base.skip=false&config.timezone=Asia%2FShanghai" | ||
alt="kuizuo's Github chart" | ||
/> | ||
</div> | ||
</div> | ||
) | ||
} |
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,19 @@ | ||
import Translate from '@docusaurus/Translate' | ||
|
||
import { Icon } from '@iconify/react' | ||
import SKILLS from '@site/data/skills' | ||
import IconCloud from '../../magicui/icon-cloud' | ||
|
||
export default function Skill({ className }: { className?: string }) { | ||
return ( | ||
<div className={className}> | ||
<h2 className="mb-2 flex items-center gap-1 text-base"> | ||
<Icon icon="carbon:tool-kit" /> | ||
<Translate id="homepage.feature.skill.title">技术栈</Translate> | ||
</h2> | ||
<div className="relative flex aspect-square w-full items-center justify-center overflow-hidden bg-background p-4"> | ||
<IconCloud iconSlugs={SKILLS} /> | ||
</div> | ||
</div> | ||
) | ||
} |
Oops, something went wrong.