From 09506e9491baacab6e8d4b40860b92fa95462617 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Wed, 27 Mar 2024 14:07:56 +0000 Subject: [PATCH] feat(projects): update tech-icons colors and add Bun icon --- src/app/projects/_components/tech-icons.tsx | 44 +++++++++++++-------- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/src/app/projects/_components/tech-icons.tsx b/src/app/projects/_components/tech-icons.tsx index 91980023..d5e3e0fa 100644 --- a/src/app/projects/_components/tech-icons.tsx +++ b/src/app/projects/_components/tech-icons.tsx @@ -15,38 +15,48 @@ import { SiPostgresql, SiPython, SiSvelte, - SiRust + SiRust, + SiBun } from 'react-icons/si' export const techIcons = { javascript: () => ( - + ), typescript: () => ( - + ), 'react-native': () => ( - + ), expo: () => , - reactjs: () => , + reactjs: () => , nextjs: () => , tailwindcss: () => ( - + ), - vite: () => , - nodejs: () => ( - + vite: () => , + nodejs: () => , + prisma: () => , + vue: () => , + svelte: () => , + mdx: () => ( + ), - prisma: () => , - vue: () => , - svelte: () => , - mdx: () => , deno: () => , postgresql: () => ( - + ), - java: () => , - python: () => , - rust: () => + java: () => , + python: () => , + rust: () => , + bun: () => ( + + ) }