feat: add Authentication category & clerk logo

This commit is contained in:
ridemountainpig
2024-11-24 21:57:10 +08:00
parent d3db126d90
commit da2ad98339
3 changed files with 30 additions and 6 deletions
+11 -5
View File
@@ -214,7 +214,7 @@ export const svgs: iSVG[] = [
},
{
title: 'JWT',
category: 'Library',
category: ['Library', 'Authentication'],
route: '/library/jwt.svg',
url: 'https://jwt.io/'
},
@@ -239,7 +239,7 @@ export const svgs: iSVG[] = [
},
{
title: 'WorkOS',
category: 'Software',
category: ['Software', 'Authentication'],
route: {
light: '/library/workos.svg',
dark: '/library/workos-light.svg'
@@ -575,7 +575,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Twilio',
category: 'Software',
category: ['Software', 'Authentication'],
route: '/library/twilio.svg',
url: 'https://twilio.com'
},
@@ -615,7 +615,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Authy',
category: 'Software',
category: ['Software', 'Authentication'],
route: '/library/authy.svg',
url: 'https://authy.com/'
},
@@ -810,7 +810,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Auth0',
category: 'Library',
category: ['Library', 'Authentication'],
route: '/library/auth0.svg',
url: 'https://auth0.com/'
},
@@ -3074,5 +3074,11 @@ export const svgs: iSVG[] = [
dark: 'library/soundcloud-wordmark_dark.svg'
},
url: 'https://soundcloud.com/'
},
{
title: 'Clerk',
category: ['Software', 'Authentication'],
route: '/library/clerk.svg',
url: 'https://clerk.com/'
}
];
+2 -1
View File
@@ -25,4 +25,5 @@ export type tCategory =
| 'Vercel'
| 'Google'
| 'Payment'
| 'void(0)';
| 'void(0)'
| 'Authentication';