diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 13be442..a4a780a 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -285,12 +285,6 @@ export const svgs: iSVG[] = [ route: '/library/bootstrap.svg', url: 'https://getbootstrap.com/' }, - { - title: 'Vite.js', - category: 'Compiler', - route: '/library/vitejs.svg', - url: 'https://vitejs.dev' - }, { title: 'Facebook', category: 'Social', @@ -2933,5 +2927,29 @@ export const svgs: iSVG[] = [ category: ['Hardware', 'Software'], route: '/library/raspberry_pi.svg', url: 'https://www.raspberrypi.com/' + }, + { + title: 'Vite', + category: ['Devtool', 'void(0)'], + route: '/library/vitejs.svg', + url: 'https://vitejs.dev' + }, + { + title: 'Vitest', + category: ['Framework', 'void(0)'], + route: '/library/vitest.svg', + url: 'https://vitest.dev/' + }, + { + title: 'Oxc', + category: ['Devtool', 'void(0)'], + route: '/library/oxc.svg', + url: 'https://oxc.rs/' + }, + { + title: 'Rolldown', + category: ['Compiler', 'void(0)'], + route: '/library/rolldown.svg', + url: 'https://rolldown.rs/' } ]; diff --git a/src/types/categories.ts b/src/types/categories.ts index 7bd215b..08737b7 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -23,4 +23,5 @@ export type tCategory = | 'Music' | 'Vercel' | 'Google' - | 'Payment'; + | 'Payment' + | 'void(0)';