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', ]