Skip to content

Commit 09ba60f

Browse files
authored
Merge branch 'main' into main
2 parents 1af1946 + 6f27ed4 commit 09ba60f

38 files changed

+355
-115
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"@upstash/redis": "1.34.0",
4444
"clsx": "2.1.1",
4545
"downloadjs": "1.4.7",
46+
"fuse.js": "^7.0.0",
4647
"jszip": "3.10.1",
4748
"lucide-svelte": "0.445.0",
4849
"mode-watcher": "0.4.1",

pnpm-lock.yaml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/data/svgs.ts

Lines changed: 91 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ export const svgs: iSVG[] = [
9696
route: '/library/animate.svg',
9797
url: 'https://www.adobe.com/products/animate'
9898
},
99+
{
100+
title: 'Apollo.io',
101+
category: 'Software',
102+
route: '/library/apollo.io.svg',
103+
url: 'https://www.apollo.io/'
104+
},
99105
{
100106
title: 'Blender',
101107
category: ['Software', 'Design'],
@@ -162,8 +168,15 @@ export const svgs: iSVG[] = [
162168
{
163169
title: 'React',
164170
category: 'Library',
165-
route: '/library/react.svg',
166-
url: 'https://reactjs.org/'
171+
route: {
172+
light: '/library/react_light.svg',
173+
dark: '/library/react_dark.svg'
174+
},
175+
wordmark: {
176+
light: '/library/react_wordmark_light.svg',
177+
dark: '/library/react_wordmark_dark.svg'
178+
},
179+
url: 'https://react.dev/'
167180
},
168181
{
169182
title: 'Svelte',
@@ -317,7 +330,12 @@ export const svgs: iSVG[] = [
317330
light: '/library/deno.svg',
318331
dark: '/library/deno_dark.svg'
319332
},
320-
url: 'https://deno.land/'
333+
wordmark: {
334+
light: '/library/deno_wordmark.svg',
335+
dark: '/library/deno_wordmark_dark.svg'
336+
},
337+
brandUrl: 'https://deno.com/brand',
338+
url: 'https://deno.com/'
321339
},
322340
{
323341
title: 'Gatsby',
@@ -353,6 +371,11 @@ export const svgs: iSVG[] = [
353371
title: 'Tailwind CSS',
354372
category: 'Framework',
355373
route: '/library/tailwindcss.svg',
374+
wordmark: {
375+
light: '/library/tailwindcss-wordmark.svg',
376+
dark: '/library/tailwindcss-wordmark-dark.svg'
377+
},
378+
brandUrl: 'https://tailwindcss.com/brand',
356379
url: 'https://tailwindcss.com/'
357380
},
358381
{
@@ -2135,9 +2158,13 @@ export const svgs: iSVG[] = [
21352158
url: 'https://www.jetbrains.com/phpstorm/'
21362159
},
21372160
{
2138-
title: 'MonkeyType',
2161+
title: 'Monkeytype',
21392162
category: 'Software',
21402163
route: '/library/monkeytype.svg',
2164+
wordmark: {
2165+
dark: '/library/monkeytype-wordmark-dark.svg',
2166+
light: '/library/monkeytype-wordmark-light.svg'
2167+
},
21412168
url: 'https://monkeytype.com/'
21422169
},
21432170
{
@@ -2344,7 +2371,7 @@ export const svgs: iSVG[] = [
23442371
},
23452372
{
23462373
title: 'Google Idx',
2347-
category: 'Software',
2374+
category: ['Software', 'Google'],
23482375
route: '/library/google-idx.svg',
23492376
url: 'https://idx.dev/'
23502377
},
@@ -2405,7 +2432,7 @@ export const svgs: iSVG[] = [
24052432
},
24062433
{
24072434
title: 'Bitwarden',
2408-
category: 'Software',
2435+
category: ['Software', 'Authentication'],
24092436
route: '/library/bitwarden.svg',
24102437
url: 'https://bitwarden.com/'
24112438
},
@@ -2456,7 +2483,7 @@ export const svgs: iSVG[] = [
24562483
},
24572484
{
24582485
title: 'Google PaLM',
2459-
category: 'AI',
2486+
category: ['AI', 'Google'],
24602487
route: '/library/google-palm.svg',
24612488
url: 'https://ai.google/discover/palm2/'
24622489
},
@@ -2656,20 +2683,6 @@ export const svgs: iSVG[] = [
26562683
wordmark: '/library/tina_wordmark.svg',
26572684
url: 'https://tina.io/'
26582685
},
2659-
{
2660-
title: 'Vercel',
2661-
category: ['Hosting', 'Vercel'],
2662-
route: {
2663-
light: '/library/vercel.svg',
2664-
dark: '/library/vercel_dark.svg'
2665-
},
2666-
wordmark: {
2667-
light: '/library/vercel_wordmark.svg',
2668-
dark: '/library/vercel_wordmark_dark.svg'
2669-
},
2670-
brandUrl: 'https://vercel.com/geist/brands',
2671-
url: 'https://vercel.com/'
2672-
},
26732686
{
26742687
title: 'Next.js',
26752688
category: ['Framework', 'Vercel'],
@@ -2899,7 +2912,7 @@ export const svgs: iSVG[] = [
28992912
},
29002913
{
29012914
title: 'Firebase',
2902-
category: 'Hosting',
2915+
category: ['Hosting', 'Google'],
29032916
route: '/library/firebase.svg',
29042917
wordmark: '/library/firebase-wordmark.svg',
29052918
url: 'https://firebase.google.com/'
@@ -2946,25 +2959,25 @@ export const svgs: iSVG[] = [
29462959
},
29472960
{
29482961
title: 'Vite',
2949-
category: ['Devtool', 'void(0)'],
2962+
category: ['Devtool', 'VoidZero'],
29502963
route: '/library/vitejs.svg',
29512964
url: 'https://vitejs.dev'
29522965
},
29532966
{
29542967
title: 'Vitest',
2955-
category: ['Framework', 'void(0)'],
2968+
category: ['Framework', 'VoidZero'],
29562969
route: '/library/vitest.svg',
29572970
url: 'https://vitest.dev/'
29582971
},
29592972
{
29602973
title: 'Oxc',
2961-
category: ['Devtool', 'void(0)'],
2974+
category: ['Devtool', 'VoidZero'],
29622975
route: '/library/oxc.svg',
29632976
url: 'https://oxc.rs/'
29642977
},
29652978
{
29662979
title: 'Rolldown',
2967-
category: ['Compiler', 'void(0)'],
2980+
category: ['Compiler', 'VoidZero'],
29682981
route: '/library/rolldown.svg',
29692982
url: 'https://rolldown.rs/'
29702983
},
@@ -3228,5 +3241,57 @@ export const svgs: iSVG[] = [
32283241
category: 'Authentication',
32293242
route: '/library/keycloak.svg',
32303243
url: 'https://keycloak.org'
3244+
},
3245+
{
3246+
title: 'DeepSeek',
3247+
category: 'AI',
3248+
route: '/library/deepseek.svg',
3249+
wordmark: '/library/deepseek_wordmark.svg',
3250+
url: 'https://deepseek.com/'
3251+
},
3252+
{
3253+
title: 'Shiki',
3254+
category: 'Library',
3255+
route: '/library/shiki.svg',
3256+
url: 'https://shiki.style/'
3257+
},
3258+
{
3259+
title: 'Dropbox',
3260+
category: ['Hosting', 'Software'],
3261+
route: '/library/dropbox.svg',
3262+
wordmark: {
3263+
light: '/library/dropbox_wordmark.svg',
3264+
dark: '/library/dropbox_wordmark_dark.svg'
3265+
},
3266+
url: 'https://www.dropbox.com/'
3267+
},
3268+
{
3269+
title: 'Open WebUI',
3270+
category: ['AI', 'Software'],
3271+
route: '/library/openwebui.svg',
3272+
url: 'https://openwebui.com/'
3273+
},
3274+
{
3275+
title: 'Base UI',
3276+
category: 'Library',
3277+
route: {
3278+
light: '/library/base-ui.svg',
3279+
dark: '/library/base-ui-dark.svg'
3280+
},
3281+
url: 'https://base-ui.com/'
3282+
},
3283+
{
3284+
title: 'Vercel',
3285+
category: ['Hosting', 'Vercel'],
3286+
route: {
3287+
light: '/library/vercel.svg',
3288+
dark: '/library/vercel_dark.svg'
3289+
},
3290+
wordmark: {
3291+
light: '/library/vercel_wordmark.svg',
3292+
dark: '/library/vercel_wordmark_dark.svg'
3293+
},
3294+
brandUrl: 'https://vercel.com/geist/brands',
3295+
url: 'https://vercel.com/'
32313296
}
32323297
];

0 commit comments

Comments
 (0)