Skip to content

Commit

Permalink
Merge pull request #470 from ridemountainpig/authentication-category
Browse files Browse the repository at this point in the history
🔒 Add Authentication category and `Clerk` logo
  • Loading branch information
pheralb authored Nov 25, 2024
2 parents d3db126 + 96a48d7 commit e4a7e8a
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
19 changes: 14 additions & 5 deletions src/data/svgs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const svgs: iSVG[] = [
},
{
title: 'JWT',
category: 'Library',
category: ['Library', 'Authentication'],
route: '/library/jwt.svg',
url: 'https://jwt.io/'
},
Expand All @@ -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'
Expand Down Expand Up @@ -575,7 +575,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Twilio',
category: 'Software',
category: ['Software', 'Authentication'],
route: '/library/twilio.svg',
url: 'https://twilio.com'
},
Expand Down Expand Up @@ -615,7 +615,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Authy',
category: 'Software',
category: ['Software', 'Authentication'],
route: '/library/authy.svg',
url: 'https://authy.com/'
},
Expand Down Expand Up @@ -810,7 +810,7 @@ export const svgs: iSVG[] = [
},
{
title: 'Auth0',
category: 'Library',
category: ['Library', 'Authentication'],
route: '/library/auth0.svg',
url: 'https://auth0.com/'
},
Expand Down Expand Up @@ -3074,5 +3074,14 @@ export const svgs: iSVG[] = [
dark: 'library/soundcloud-wordmark_dark.svg'
},
url: 'https://soundcloud.com/'
},
{
title: 'Clerk',
category: ['Software', 'Authentication'],
route: {
light: '/library/clerk-light.svg',
dark: '/library/clerk-dark.svg'
},
url: 'https://clerk.com/'
}
];
3 changes: 2 additions & 1 deletion src/types/categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ export type tCategory =
| 'Vercel'
| 'Google'
| 'Payment'
| 'void(0)';
| 'void(0)'
| 'Authentication';
6 changes: 6 additions & 0 deletions static/library/clerk-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions static/library/clerk-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e4a7e8a

Please sign in to comment.