From 04b44ee98864e37150c5df07573e4b16223e2470 Mon Sep 17 00:00:00 2001 From: kangod Date: Wed, 5 Jun 2024 17:43:19 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E6=9B=B4=E6=96=B0=E6=8A=80=E6=9C=AF?= =?UTF-8?q?=E6=A0=88=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/DevIcons.tsx | 28 ++++++++++++++++++++++++++++ components/techStack.ts | 4 ++++ 2 files changed, 32 insertions(+) diff --git a/components/DevIcons.tsx b/components/DevIcons.tsx index 26e857e..9de323b 100644 --- a/components/DevIcons.tsx +++ b/components/DevIcons.tsx @@ -903,6 +903,32 @@ export const TypeORM = () => { ) } +export const Contentlayer = () => { + return ( + + + + ) +} + +export const Giscus = () => { + return <>💎 +} + export const DevIcons = { Python: PythonIcon, Java: Java, @@ -934,6 +960,8 @@ export const DevIcons = { Zustand: Zustand, NestJS: NestJS, TanStackQuery: TanStackQuery, + Contentlayer: Contentlayer, + Giscus: Giscus, } export function FamiliarTechStack() { diff --git a/components/techStack.ts b/components/techStack.ts index 4dd82e6..2c05ed0 100644 --- a/components/techStack.ts +++ b/components/techStack.ts @@ -20,6 +20,8 @@ export type TechStack = | 'Zustand' | 'NestJS' | 'TanStackQuery' + | 'Contentlayer' + | 'Giscus' export const techStack: TechStack[] = [ 'TypeScript', @@ -43,4 +45,6 @@ export const techStack: TechStack[] = [ 'Zustand', 'NestJS', 'TanStackQuery', + 'Contentlayer', + 'Giscus', ]