Add `void(0)` category

This commit is contained in:
pheralb 2024-10-02 10:24:28 +01:00
parent 8e88407b23
commit 0222d9de37
2 changed files with 26 additions and 7 deletions

View File

@ -285,12 +285,6 @@ export const svgs: iSVG[] = [
route: '/library/bootstrap.svg', route: '/library/bootstrap.svg',
url: 'https://getbootstrap.com/' url: 'https://getbootstrap.com/'
}, },
{
title: 'Vite.js',
category: 'Compiler',
route: '/library/vitejs.svg',
url: 'https://vitejs.dev'
},
{ {
title: 'Facebook', title: 'Facebook',
category: 'Social', category: 'Social',
@ -2933,5 +2927,29 @@ export const svgs: iSVG[] = [
category: ['Hardware', 'Software'], category: ['Hardware', 'Software'],
route: '/library/raspberry_pi.svg', route: '/library/raspberry_pi.svg',
url: 'https://www.raspberrypi.com/' 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/'
} }
]; ];

View File

@ -23,4 +23,5 @@ export type tCategory =
| 'Music' | 'Music'
| 'Vercel' | 'Vercel'
| 'Google' | 'Google'
| 'Payment'; | 'Payment'
| 'void(0)';