From 57d21083314390e59809811977da49aec3fc7d22 Mon Sep 17 00:00:00 2001 From: Wilmer Blanco Date: Mon, 11 Dec 2023 14:18:57 -0300 Subject: [PATCH 01/10] Safari, chromium, edge and vivaldi logos --- src/data/svgs.ts | 28 +++++++++++++++++++++++++ static/library/chromium.svg | 29 ++++++++++++++++++++++++++ static/library/edge.svg | 41 +++++++++++++++++++++++++++++++++++++ static/library/safari.svg | 31 ++++++++++++++++++++++++++++ static/library/vivaldi.svg | 13 ++++++++++++ 5 files changed, 142 insertions(+) create mode 100644 static/library/chromium.svg create mode 100644 static/library/edge.svg create mode 100644 static/library/safari.svg create mode 100644 static/library/vivaldi.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 697b866..a720ff6 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1589,5 +1589,33 @@ export const svgs: iSVG[] = [ category: 'Browser', route: '/library/opera.svg', url: 'https://www.opera.com' + }, + { + id: 228, + title: 'Chromium', + category: 'Browser', + route: '/library/chromium.svg', + url: 'https://www.chromium.org' + }, + { + id: 229, + title: 'Edge', + category: 'Browser', + route: '/library/edge.svg', + url: 'https://www.microsoft.com/en-us/edge' + }, + { + id: 229, + title: 'Safari', + category: 'Browser', + route: '/library/safari.svg', + url: 'https://www.apple.com/safari' + }, + { + id: 230, + title: 'Vivaldi', + category: 'Browser', + route: '/library/vivaldi.svg', + url: 'https://vivaldi.com' } ]; diff --git a/static/library/chromium.svg b/static/library/chromium.svg new file mode 100644 index 0000000..3f5fafe --- /dev/null +++ b/static/library/chromium.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/library/edge.svg b/static/library/edge.svg new file mode 100644 index 0000000..56caadd --- /dev/null +++ b/static/library/edge.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/library/safari.svg b/static/library/safari.svg new file mode 100644 index 0000000..ef0dff8 --- /dev/null +++ b/static/library/safari.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/library/vivaldi.svg b/static/library/vivaldi.svg new file mode 100644 index 0000000..7192aa3 --- /dev/null +++ b/static/library/vivaldi.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file From c94387685c0fdfe53e6eb2feeab7f7ad49bb663c Mon Sep 17 00:00:00 2001 From: Pontus Abrahamsson Date: Mon, 11 Dec 2023 20:01:52 +0100 Subject: [PATCH 02/10] Add Midday logo --- src/data/svgs.ts | 15 +++++++++++---- static/library/midday.svg | 1 + 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 static/library/midday.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 8d58f31..73538ea 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1618,7 +1618,7 @@ export const svgs: iSVG[] = [ route: '/library/randevum.svg', url: 'https://www.randevum.co' }, - { + { id: 232, title: 'Hashnode', category: 'Social', @@ -1638,12 +1638,19 @@ export const svgs: iSVG[] = [ category: 'AI', route: '/library/buildship.svg', url: 'https://buildship.com/' - }, - { + }, + { id: 246480685059147554972, title: 'Cal.com', category: 'Software', route: '/library/cal.svg', url: 'https://cal.com' - } + }, + { + id: 3452, + title: 'Midday.ai', + category: 'Software', + route: '/library/midday.svg', + url: 'https://midday.ai' + } ]; diff --git a/static/library/midday.svg b/static/library/midday.svg new file mode 100644 index 0000000..ef7e4d7 --- /dev/null +++ b/static/library/midday.svg @@ -0,0 +1 @@ + \ No newline at end of file From b8ec5bf3d2dc4332ac6bcbf35baa73c5b729e8da Mon Sep 17 00:00:00 2001 From: luis-tenorio-code Date: Mon, 11 Dec 2023 15:14:44 -0500 Subject: [PATCH 03/10] bash, c, c++, cobol, fortran, haskell, matlab, r, rust and zig logos --- src/data/svgs.ts | 72 +++++++++++++++++++++++++++++++++++++- static/library/bash.svg | 1 + static/library/c++.svg | 1 + static/library/c.svg | 1 + static/library/cobol.svg | 1 + static/library/fortran.svg | 1 + static/library/haskell.svg | 1 + static/library/matlab.svg | 1 + static/library/r.svg | 1 + static/library/rust.svg | 1 + static/library/zig.svg | 1 + 11 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 static/library/bash.svg create mode 100644 static/library/c++.svg create mode 100644 static/library/c.svg create mode 100644 static/library/cobol.svg create mode 100644 static/library/fortran.svg create mode 100644 static/library/haskell.svg create mode 100644 static/library/matlab.svg create mode 100644 static/library/r.svg create mode 100644 static/library/rust.svg create mode 100644 static/library/zig.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index eb1f5ad..b60551d 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1673,5 +1673,75 @@ export const svgs: iSVG[] = [ category: 'Software', route: '/library/documenso.svg', url: 'https://documenso.com' - } + }, + { + id: 326851, + title: 'Bash', + category: 'Language', + route: '/library/bash.svg', + url: 'https://www.gnu.org/software/bash/' + }, + { + id: 740938, + title: 'C', + category: 'Language', + route: '/library/c.svg', + url: 'https://en.wikipedia.org/wiki/C_(programming_language)' + }, + { + id: 156807, + title: 'C++', + category: 'Language', + route: '/library/c++.svg', + url: 'https://en.wikipedia.org/wiki/C%2B%2B' + }, + { + id: 854167, + title: 'Cobol', + category: 'Language', + route: '/library/cobol.svg', + url: 'https://en.wikipedia.org/wiki/COBOL' + }, + { + id: 473965, + title: 'Fortran', + category: 'Language', + route: '/library/fortran.svg', + url: 'https://en.wikipedia.org/wiki/Fortran' + }, + { + id: 429673, + title: 'Haskell', + category: 'Language', + route: '/library/haskell.svg', + url: 'https://www.haskell.org/' + }, + { + id: 907583, + title: 'Mathlab', + category: 'Language', + route: '/library/mathlab.svg', + url: 'https://www.mathworks.com/products/matlab.html' + }, + { + id: 754396, + title: 'R', + category: 'Language', + route: '/library/r.svg', + url: 'https://www.r-project.org/' + }, + { + id: 783625, + title: 'Rust', + category: 'Language', + route: '/library/rust.svg', + url: 'https://www.rust-lang.org/' + }, + { + id: 586019, + title: 'Zig', + category: 'Language', + route: '/library/zig.svg', + url: 'https://ziglang.org/' + }, ]; diff --git a/static/library/bash.svg b/static/library/bash.svg new file mode 100644 index 0000000..e7eaad8 --- /dev/null +++ b/static/library/bash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/c++.svg b/static/library/c++.svg new file mode 100644 index 0000000..e371402 --- /dev/null +++ b/static/library/c++.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/c.svg b/static/library/c.svg new file mode 100644 index 0000000..76b62a1 --- /dev/null +++ b/static/library/c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/cobol.svg b/static/library/cobol.svg new file mode 100644 index 0000000..e6e7f82 --- /dev/null +++ b/static/library/cobol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/fortran.svg b/static/library/fortran.svg new file mode 100644 index 0000000..0ad4185 --- /dev/null +++ b/static/library/fortran.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/haskell.svg b/static/library/haskell.svg new file mode 100644 index 0000000..65d0786 --- /dev/null +++ b/static/library/haskell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/matlab.svg b/static/library/matlab.svg new file mode 100644 index 0000000..45b875a --- /dev/null +++ b/static/library/matlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/r.svg b/static/library/r.svg new file mode 100644 index 0000000..575c110 --- /dev/null +++ b/static/library/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/rust.svg b/static/library/rust.svg new file mode 100644 index 0000000..2587862 --- /dev/null +++ b/static/library/rust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/zig.svg b/static/library/zig.svg new file mode 100644 index 0000000..f733d27 --- /dev/null +++ b/static/library/zig.svg @@ -0,0 +1 @@ + \ No newline at end of file From 19c3095c1ad23e59dd89adb0c54c11defe814d18 Mon Sep 17 00:00:00 2001 From: luis-tenorio-code Date: Mon, 11 Dec 2023 15:22:49 -0500 Subject: [PATCH 04/10] Update SVG route for Mathlab --- src/data/svgs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 9abc2e4..e672d98 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1748,7 +1748,7 @@ export const svgs: iSVG[] = [ id: 907583, title: 'Mathlab', category: 'Language', - route: '/library/mathlab.svg', + route: '/library/matlab.svg', url: 'https://www.mathworks.com/products/matlab.html' }, { @@ -1771,5 +1771,5 @@ export const svgs: iSVG[] = [ category: 'Language', route: '/library/zig.svg', url: 'https://ziglang.org/' - }, + } ]; From 1231b5387b168e23d525c0fcb4990956defe1a1f Mon Sep 17 00:00:00 2001 From: luis-tenorio-code Date: Mon, 11 Dec 2023 15:27:05 -0500 Subject: [PATCH 05/10] Fix typo in SVG title --- src/data/svgs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index e672d98..cfaa077 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1746,7 +1746,7 @@ export const svgs: iSVG[] = [ }, { id: 907583, - title: 'Mathlab', + title: 'matlab', category: 'Language', route: '/library/matlab.svg', url: 'https://www.mathworks.com/products/matlab.html' From d583fad8d653cecbb91e2bfae81cd40d39486129 Mon Sep 17 00:00:00 2001 From: marpeand <55035865+marpeand@users.noreply.github.com> Date: Mon, 11 Dec 2023 18:55:23 -0300 Subject: [PATCH 06/10] Add files via upload --- static/library/monero.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 static/library/monero.svg diff --git a/static/library/monero.svg b/static/library/monero.svg new file mode 100644 index 0000000..47e5699 --- /dev/null +++ b/static/library/monero.svg @@ -0,0 +1 @@ + \ No newline at end of file From 6d7459ee85f5f08687c71a3105686650f493cb4e Mon Sep 17 00:00:00 2001 From: marpeand <55035865+marpeand@users.noreply.github.com> Date: Mon, 11 Dec 2023 18:59:52 -0300 Subject: [PATCH 07/10] Update svgs.ts --- src/data/svgs.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 0ebe485..028368b 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1715,5 +1715,12 @@ export const svgs: iSVG[] = [ category: 'Software', route: '/library/front.svg', url: 'https://front.com' + }, + { + id: 473836, + title: 'Monero', + category: 'Crypto', + route: '/library/monero.svg', + url: 'https://www.getmonero.org/' } ]; From 0f09316086c8824e55de3ab9cb8943e56a76e259 Mon Sep 17 00:00:00 2001 From: Ho Yi Wei Date: Tue, 12 Dec 2023 09:53:42 +0800 Subject: [PATCH 08/10] feat: add shadcn/ui, metamask, zeabur logo --- src/data/svgs.ts | 31 ++++++++++++++++++++++++++----- static/library/metamask.svg | 18 ++++++++++++++++++ static/library/shadcn-ui.svg | 25 +++++++++++++++++++++++++ static/library/zeabur.svg | 8 ++++++++ 4 files changed, 77 insertions(+), 5 deletions(-) create mode 100644 static/library/metamask.svg create mode 100644 static/library/shadcn-ui.svg create mode 100644 static/library/zeabur.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 341fe4e..b0a52c8 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1626,11 +1626,11 @@ export const svgs: iSVG[] = [ url: 'https://www.randevum.co' }, { - "id": 232, - "title": "Beacon", - "category": "Software", - "route": "/library/Beacon-Logo.svg", - "url": "https://www.beacon.com" + id: 232, + title: 'Beacon', + category: 'Software', + route: '/library/Beacon-Logo.svg', + url: 'https://www.beacon.com' }, { id: 95775, @@ -1816,5 +1816,26 @@ export const svgs: iSVG[] = [ category: 'Framework', route: '/library/django.svg', url: 'https://www.djangoproject.com/' + }, + { + id: 246, + title: 'Zeabur', + category: 'Hosting', + route: '/library/zeabur.svg', + url: 'https://zeabur.com/' + }, + { + id: 247, + title: 'MetaMask', + category: 'Crypto', + route: '/library/metamask.svg', + url: 'https://metamask.io/' + }, + { + id: 248, + title: 'shadcn/ui', + category: 'Library', + route: '/library/shadcn-ui.svg', + url: 'https://ui.shadcn.com/' } ]; diff --git a/static/library/metamask.svg b/static/library/metamask.svg new file mode 100644 index 0000000..47ccb58 --- /dev/null +++ b/static/library/metamask.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/library/shadcn-ui.svg b/static/library/shadcn-ui.svg new file mode 100644 index 0000000..a790974 --- /dev/null +++ b/static/library/shadcn-ui.svg @@ -0,0 +1,25 @@ + + + + + diff --git a/static/library/zeabur.svg b/static/library/zeabur.svg new file mode 100644 index 0000000..a26c653 --- /dev/null +++ b/static/library/zeabur.svg @@ -0,0 +1,8 @@ + + + + + + From 4532e65281cc1c10aff25ec665586bafe7be26e4 Mon Sep 17 00:00:00 2001 From: Ho Yi Wei Date: Tue, 12 Dec 2023 15:17:15 +0800 Subject: [PATCH 09/10] feat: add zeabur dark theme logo --- src/data/svgs.ts | 5 ++++- static/library/zeabur-dark.svg | 5 +++++ static/library/zeabur-light.svg | 5 +++++ static/library/zeabur.svg | 8 -------- 4 files changed, 14 insertions(+), 9 deletions(-) create mode 100644 static/library/zeabur-dark.svg create mode 100644 static/library/zeabur-light.svg delete mode 100644 static/library/zeabur.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index b0a52c8..6a5d4bd 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1821,7 +1821,10 @@ export const svgs: iSVG[] = [ id: 246, title: 'Zeabur', category: 'Hosting', - route: '/library/zeabur.svg', + route: { + light: '/library/zeabur-light.svg', + dark: '/library/zeabur-dark.svg' + }, url: 'https://zeabur.com/' }, { diff --git a/static/library/zeabur-dark.svg b/static/library/zeabur-dark.svg new file mode 100644 index 0000000..ec0926c --- /dev/null +++ b/static/library/zeabur-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/static/library/zeabur-light.svg b/static/library/zeabur-light.svg new file mode 100644 index 0000000..872bddc --- /dev/null +++ b/static/library/zeabur-light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/static/library/zeabur.svg b/static/library/zeabur.svg deleted file mode 100644 index a26c653..0000000 --- a/static/library/zeabur.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - From 26283bd49d2797872155557535dc0e55aeea94ce Mon Sep 17 00:00:00 2001 From: svensken94 Date: Tue, 12 Dec 2023 13:37:14 +0300 Subject: [PATCH 10/10] =?UTF-8?q?=F0=9F=8E=A8=20Alternative=20color=20vers?= =?UTF-8?q?ions=20added?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 172 ++++++++++++++++++++------ static/library/apple_dark.svg | 1 + static/library/arc_dark.svg | 1 + static/library/astro_dark.svg | 1 + static/library/bash_dark.svg | 1 + static/library/copilot_dark.svg | 1 + static/library/deno_dark.svg | 1 + static/library/documenso.svg | 20 +-- static/library/documenso_dark.svg | 1 + static/library/expressjs_dark.svg | 1 + static/library/fastify_dark.svg | 1 + static/library/framer_dark.svg | 1 + static/library/godaddy.svg | 5 +- static/library/godaddy_dark.svg | 1 + static/library/golang_dark.svg | 1 + static/library/instagram_dark.svg | 1 + static/library/instatus.svg | 14 +-- static/library/instatus_dark.svg | 1 + static/library/jquery.svg | 2 +- static/library/jquery_dark.svg | 1 + static/library/openai_dark.svg | 1 + static/library/patreon_dark.svg | 1 + static/library/payload_dark.svg | 1 + static/library/php.svg | 6 +- static/library/php_dark.svg | 1 + static/library/planetscale.svg | 4 +- static/library/planetscale_dark.svg | 1 + static/library/prisma.svg | 7 +- static/library/prisma_dark.svg | 1 + static/library/r.svg | 2 +- static/library/r_dark.svg | 1 + static/library/railway.svg | 5 +- static/library/railway_dark.svg | 1 + static/library/roblox_light.svg | 1 + static/library/rust.svg | 2 +- static/library/rust_dark.svg | 1 + static/library/shadcn-ui.svg | 26 +--- static/library/shadcn-ui_dark.svg | 1 + static/library/stately_dark.svg | 1 + static/library/threads_dark.svg | 1 + static/library/udemy.svg | 5 +- static/library/udemy_dark.svg | 1 + static/library/unity.svg | 4 +- static/library/unity_dark.svg | 1 + static/library/unreal_engine.svg | 2 +- static/library/unreal_engine_dark.svg | 1 + static/library/vercel.svg | 2 +- static/library/vercel_dark.svg | 1 + static/library/x.svg | 2 +- static/library/x_dark.svg | 1 + static/library/xstate_dark.svg | 1 + 51 files changed, 187 insertions(+), 127 deletions(-) create mode 100644 static/library/apple_dark.svg create mode 100644 static/library/arc_dark.svg create mode 100644 static/library/astro_dark.svg create mode 100644 static/library/bash_dark.svg create mode 100644 static/library/copilot_dark.svg create mode 100644 static/library/deno_dark.svg create mode 100644 static/library/documenso_dark.svg create mode 100644 static/library/expressjs_dark.svg create mode 100644 static/library/fastify_dark.svg create mode 100644 static/library/framer_dark.svg create mode 100644 static/library/godaddy_dark.svg create mode 100644 static/library/golang_dark.svg create mode 100644 static/library/instagram_dark.svg create mode 100644 static/library/instatus_dark.svg create mode 100644 static/library/jquery_dark.svg create mode 100644 static/library/openai_dark.svg create mode 100644 static/library/patreon_dark.svg create mode 100644 static/library/payload_dark.svg create mode 100644 static/library/php_dark.svg create mode 100644 static/library/planetscale_dark.svg create mode 100644 static/library/prisma_dark.svg create mode 100644 static/library/r_dark.svg create mode 100644 static/library/railway_dark.svg create mode 100644 static/library/roblox_light.svg create mode 100644 static/library/rust_dark.svg create mode 100644 static/library/shadcn-ui_dark.svg create mode 100644 static/library/stately_dark.svg create mode 100644 static/library/threads_dark.svg create mode 100644 static/library/udemy_dark.svg create mode 100644 static/library/unity_dark.svg create mode 100644 static/library/unreal_engine_dark.svg create mode 100644 static/library/vercel_dark.svg create mode 100644 static/library/x_dark.svg create mode 100644 static/library/xstate_dark.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index c240fd1..a070521 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -33,7 +33,10 @@ export const svgs: iSVG[] = [ id: 5, title: 'Vercel', category: 'Hosting', - route: '/library/vercel.svg', + route: { + light: '/library/vercel.svg', + dark: '/library/vercel_dark.svg' + }, url: 'https://vercel.com/' }, { @@ -173,7 +176,10 @@ export const svgs: iSVG[] = [ id: 25, title: 'Deno', category: 'Library', - route: '/library/deno.svg', + route: { + light: '/library/deno.svg', + dark: '/library/deno_dark.svg' + }, url: 'https://deno.land/' }, { @@ -264,7 +270,10 @@ export const svgs: iSVG[] = [ id: 38, title: 'Astro', category: 'Framework', - route: '/library/astro.svg', + route: { + light: '/library/astro.svg', + dark: '/library/astro_dark.svg' + }, url: 'https://astro.build/' }, { @@ -278,7 +287,10 @@ export const svgs: iSVG[] = [ id: 40, title: 'Framer', category: 'Software', - route: '/library/framer.svg', + route: { + light: '/library/framer.svg', + dark: '/library/framer_dark.svg' + }, url: 'https://framer.com/' }, { @@ -383,7 +395,10 @@ export const svgs: iSVG[] = [ id: 55, title: 'Payload CMS', category: 'CMS', - route: '/library/payload.svg', + route: { + light: '/library/payload.svg', + dark: '/library/payload_dark.svg' + }, url: 'https://payloadcms.com' }, { @@ -418,14 +433,20 @@ export const svgs: iSVG[] = [ id: 60, title: 'Express.js', category: 'Framework', - route: '/library/expressjs.svg', + route: { + light: '/library/expressjs.svg', + dark: '/library/expressjs_dark.svg' + }, url: 'https://expressjs.com' }, { id: 61, title: 'Fastify', category: 'Framework', - route: '/library/fastify.svg', + route: { + light: '/library/fastify.svg', + dark: '/library/fastify_dark.svg' + }, url: 'https://www.fastify.io' }, { @@ -439,7 +460,10 @@ export const svgs: iSVG[] = [ id: 63, title: 'jQuery', category: 'Language', - route: '/library/jquery.svg', + route: { + light: '/library/jquery.svg', + dark: '/library/jquery_dark.svg' + }, url: 'https://jquery.com' }, { @@ -474,7 +498,10 @@ export const svgs: iSVG[] = [ id: 68, title: 'Arc', category: 'Social', - route: '/library/arc.svg', + route: { + light: '/library/arc.svg', + dark: '/library/arc_dark.svg' + }, url: 'https://arc.dev' }, { @@ -509,14 +536,20 @@ export const svgs: iSVG[] = [ id: 73, title: 'Github Copilot', category: 'Software', - route: '/library/copilot.svg', + route: { + light: '/library/copilot.svg', + dark: '/library/copilot_dark.svg' + }, url: 'https://github.com/features/copilot' }, { id: 74, title: 'Railway', category: 'Software', - route: '/library/railway.svg', + route: { + light: '/library/railway.svg', + dark: '/library/railway_dark.svg' + }, url: 'https://railway.app/' }, { @@ -537,14 +570,20 @@ export const svgs: iSVG[] = [ id: 77, title: 'GoDaddy', category: 'Hosting', - route: '/library/godaddy.svg', + route: { + light: '/library/godaddy.svg', + dark: '/library/godaddy_dark.svg' + }, url: 'https://www.godaddy.com/' }, { id: 78, title: 'Udemy', category: 'Education', - route: '/library/udemy.svg', + route: { + light: '/library/udemy.svg', + dark: '/library/udemy_dark.svg' + }, url: 'https://www.udemy.com/' }, { @@ -565,14 +604,20 @@ export const svgs: iSVG[] = [ id: 81, title: 'Prisma', category: 'Software', - route: '/library/prisma.svg', + route: { + light: '/library/prisma.svg', + dark: '/library/prisma_dark.svg' + }, url: 'https://prisma.io/' }, { id: 82, title: 'Go', category: 'Language', - route: '/library/golang.svg', + route: { + light: '/library/golang.svg', + dark: '/library/golang_dark.svg' + }, url: 'https://go.dev/' }, { @@ -649,7 +694,10 @@ export const svgs: iSVG[] = [ id: 93, title: 'PlanetScale', category: 'Database', - route: '/library/planetscale.svg', + route: { + light: '/library/planetscale.svg', + dark: '/library/planetscale_dark.svg' + }, url: 'https://planetscale.com/' }, { @@ -894,7 +942,10 @@ export const svgs: iSVG[] = [ id: 128, title: 'Unity', category: 'Software', - route: '/library/unity.svg', + route: { + light: '/library/unity.svg', + dark: '/library/unity_dark.svg' + }, url: 'https://unity.com/' }, { @@ -985,7 +1036,10 @@ export const svgs: iSVG[] = [ id: 141, title: 'Apple', category: 'Software', - route: '/library/apple.svg', + route: { + light: '/library/apple.svg', + dark: '/library/apple_dark.svg' + }, url: 'https://www.apple.com' }, { @@ -1216,7 +1270,10 @@ export const svgs: iSVG[] = [ id: 174, title: 'Php', category: 'Language', - route: '/library/php.svg', + route: { + light: '/library/php.svg', + dark: '/library/php_dark.svg' + }, url: 'https://www.php.net/' }, { @@ -1328,7 +1385,10 @@ export const svgs: iSVG[] = [ id: 190, title: 'OpenAI', category: 'AI', - route: '/library/openai.svg', + route: { + light: '/library/openai.svg', + dark: '/library/openai_dark.svg' + }, url: 'https://openai.com/' }, { @@ -1342,14 +1402,20 @@ export const svgs: iSVG[] = [ id: 192, title: 'Threads', category: 'Social', - route: '/library/threads.svg', + route: { + light: '/library/threads.svg', + dark: '/library/threads_dark.svg' + }, url: 'https://threads.net/' }, { id: 193, title: 'Instagram', category: 'Social', - route: '/library/instagram.svg', + route: { + light: '/library/instagram.svg', + dark: '/library/instagram_dark.svg' + }, url: 'https://www.instagram.com/' }, { @@ -1503,7 +1569,10 @@ export const svgs: iSVG[] = [ id: 215, title: 'X', category: 'Social', - route: '/library/x.svg', + route: { + light: '/library/x.svg', + dark: '/library/x_dark.svg' + }, url: 'https://x.com' }, { @@ -1601,7 +1670,10 @@ export const svgs: iSVG[] = [ id: 4929293, title: 'Unreal Engine', category: 'Software', - route: '/library/unreal_engine.svg', + route: { + light: '/library/unreal_engine.svg', + dark: '/library/unreal_engine_dark.svg' + }, url: 'https://www.unrealengine.com/' }, { @@ -1685,21 +1757,30 @@ export const svgs: iSVG[] = [ id: 24525, title: 'Roblox', category: 'Software', - route: '/library/roblox.svg', + route: { + dark: '/library/roblox.svg', + light: '/library/roblox_light.svg' + }, url: 'https://www.roblox.com/' }, { id: 68067, title: 'Stately.ai', category: 'Software', - route: '/library/stately.svg', + route: { + light: '/library/stately.svg', + dark: '/library/stately_dark.svg' + }, url: 'https://stately.ai/' }, { id: 233, title: 'XState', category: 'Library', - route: '/library/xstate.svg', + route: { + light: '/library/xstate.svg', + dark: '/library/xstate_dark.svg' + }, url: 'https://github.com/statelyai/xstate' }, { @@ -1755,7 +1836,10 @@ export const svgs: iSVG[] = [ id: 241, title: 'Patreon', category: 'Software', - route: '/library/patreon.svg', + route: { + light: '/library/patreon.svg', + dark: '/library/patreon_dark.svg' + }, url: 'https://www.patreon.com/' }, { @@ -1797,14 +1881,20 @@ export const svgs: iSVG[] = [ id: 2342453, title: 'Documenso', category: 'Software', - route: '/library/documenso.svg', + route: { + light: '/library/documenso.svg', + dark: '/library/documenso_dark.svg' + }, url: 'https://documenso.com' }, { id: 326851, title: 'Bash', category: 'Language', - route: '/library/bash.svg', + route: { + light: '/library/bash.svg', + dark: '/library/bash_dark.svg' + }, url: 'https://www.gnu.org/software/bash/' }, { @@ -1853,14 +1943,20 @@ export const svgs: iSVG[] = [ id: 754396, title: 'R', category: 'Language', - route: '/library/r.svg', + route: { + light: '/library/r.svg', + dark: '/library/r_dark.svg' + }, url: 'https://www.r-project.org/' }, { id: 783625, title: 'Rust', category: 'Language', - route: '/library/rust.svg', + route: { + light: '/library/rust.svg', + dark: '/library/rust_dark.svg' + }, url: 'https://www.rust-lang.org/' }, { @@ -1870,11 +1966,14 @@ export const svgs: iSVG[] = [ route: '/library/zig.svg', url: 'https://ziglang.org/' }, - { + { id: 233, title: 'Instatus', category: 'Software', - route: '/library/instatus.svg', + route: { + light: '/library/instatus.svg', + dark: '/library/instatus_dark.svg' + }, url: 'https://instatus.com' }, { @@ -1936,7 +2035,10 @@ export const svgs: iSVG[] = [ id: 248, title: 'shadcn/ui', category: 'Library', - route: '/library/shadcn-ui.svg', + route: { + light: '/library/shadcn-ui.svg', + dark: '/library/shadcn-ui_dark.svg' + }, url: 'https://ui.shadcn.com/' } ]; diff --git a/static/library/apple_dark.svg b/static/library/apple_dark.svg new file mode 100644 index 0000000..054d831 --- /dev/null +++ b/static/library/apple_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/arc_dark.svg b/static/library/arc_dark.svg new file mode 100644 index 0000000..f70cf2a --- /dev/null +++ b/static/library/arc_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/astro_dark.svg b/static/library/astro_dark.svg new file mode 100644 index 0000000..e776560 --- /dev/null +++ b/static/library/astro_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/bash_dark.svg b/static/library/bash_dark.svg new file mode 100644 index 0000000..2668f86 --- /dev/null +++ b/static/library/bash_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/copilot_dark.svg b/static/library/copilot_dark.svg new file mode 100644 index 0000000..7e49f6d --- /dev/null +++ b/static/library/copilot_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/deno_dark.svg b/static/library/deno_dark.svg new file mode 100644 index 0000000..e280f22 --- /dev/null +++ b/static/library/deno_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/documenso.svg b/static/library/documenso.svg index c6f3b30..7deefff 100644 --- a/static/library/documenso.svg +++ b/static/library/documenso.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/static/library/documenso_dark.svg b/static/library/documenso_dark.svg new file mode 100644 index 0000000..0418b60 --- /dev/null +++ b/static/library/documenso_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/expressjs_dark.svg b/static/library/expressjs_dark.svg new file mode 100644 index 0000000..fb2581f --- /dev/null +++ b/static/library/expressjs_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/fastify_dark.svg b/static/library/fastify_dark.svg new file mode 100644 index 0000000..15bcce8 --- /dev/null +++ b/static/library/fastify_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/framer_dark.svg b/static/library/framer_dark.svg new file mode 100644 index 0000000..fbb9cbe --- /dev/null +++ b/static/library/framer_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/godaddy.svg b/static/library/godaddy.svg index d28480f..98b9180 100644 --- a/static/library/godaddy.svg +++ b/static/library/godaddy.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/static/library/godaddy_dark.svg b/static/library/godaddy_dark.svg new file mode 100644 index 0000000..660ada1 --- /dev/null +++ b/static/library/godaddy_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/golang_dark.svg b/static/library/golang_dark.svg new file mode 100644 index 0000000..c535c5b --- /dev/null +++ b/static/library/golang_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/instagram_dark.svg b/static/library/instagram_dark.svg new file mode 100644 index 0000000..de7213e --- /dev/null +++ b/static/library/instagram_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/instatus.svg b/static/library/instatus.svg index 67e0e1e..1d91435 100644 --- a/static/library/instatus.svg +++ b/static/library/instatus.svg @@ -1,13 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/instatus_dark.svg b/static/library/instatus_dark.svg new file mode 100644 index 0000000..65201ff --- /dev/null +++ b/static/library/instatus_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/jquery.svg b/static/library/jquery.svg index de1c907..0f9413b 100644 --- a/static/library/jquery.svg +++ b/static/library/jquery.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/jquery_dark.svg b/static/library/jquery_dark.svg new file mode 100644 index 0000000..da6d74a --- /dev/null +++ b/static/library/jquery_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/openai_dark.svg b/static/library/openai_dark.svg new file mode 100644 index 0000000..b6d542d --- /dev/null +++ b/static/library/openai_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/patreon_dark.svg b/static/library/patreon_dark.svg new file mode 100644 index 0000000..539dd43 --- /dev/null +++ b/static/library/patreon_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/payload_dark.svg b/static/library/payload_dark.svg new file mode 100644 index 0000000..82243a6 --- /dev/null +++ b/static/library/payload_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/php.svg b/static/library/php.svg index 2046d1b..a430c98 100644 --- a/static/library/php.svg +++ b/static/library/php.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/static/library/php_dark.svg b/static/library/php_dark.svg new file mode 100644 index 0000000..873cb5a --- /dev/null +++ b/static/library/php_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/planetscale.svg b/static/library/planetscale.svg index b0f68dd..b5a3d68 100644 --- a/static/library/planetscale.svg +++ b/static/library/planetscale.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/static/library/planetscale_dark.svg b/static/library/planetscale_dark.svg new file mode 100644 index 0000000..1b03638 --- /dev/null +++ b/static/library/planetscale_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/prisma.svg b/static/library/prisma.svg index 048a467..ebb23bc 100644 --- a/static/library/prisma.svg +++ b/static/library/prisma.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/static/library/prisma_dark.svg b/static/library/prisma_dark.svg new file mode 100644 index 0000000..20e05a2 --- /dev/null +++ b/static/library/prisma_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/r.svg b/static/library/r.svg index 575c110..9f5f810 100644 --- a/static/library/r.svg +++ b/static/library/r.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/r_dark.svg b/static/library/r_dark.svg new file mode 100644 index 0000000..9f3234e --- /dev/null +++ b/static/library/r_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/railway.svg b/static/library/railway.svg index 3e6fd3f..80058dc 100644 --- a/static/library/railway.svg +++ b/static/library/railway.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/static/library/railway_dark.svg b/static/library/railway_dark.svg new file mode 100644 index 0000000..2de7494 --- /dev/null +++ b/static/library/railway_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/roblox_light.svg b/static/library/roblox_light.svg new file mode 100644 index 0000000..a4ebfad --- /dev/null +++ b/static/library/roblox_light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/rust.svg b/static/library/rust.svg index 2587862..5b468c0 100644 --- a/static/library/rust.svg +++ b/static/library/rust.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/rust_dark.svg b/static/library/rust_dark.svg new file mode 100644 index 0000000..76ea72e --- /dev/null +++ b/static/library/rust_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/shadcn-ui.svg b/static/library/shadcn-ui.svg index a790974..49bb9bf 100644 --- a/static/library/shadcn-ui.svg +++ b/static/library/shadcn-ui.svg @@ -1,25 +1 @@ - - - - - + \ No newline at end of file diff --git a/static/library/shadcn-ui_dark.svg b/static/library/shadcn-ui_dark.svg new file mode 100644 index 0000000..70f3f0c --- /dev/null +++ b/static/library/shadcn-ui_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/stately_dark.svg b/static/library/stately_dark.svg new file mode 100644 index 0000000..e198d6b --- /dev/null +++ b/static/library/stately_dark.svg @@ -0,0 +1 @@ + diff --git a/static/library/threads_dark.svg b/static/library/threads_dark.svg new file mode 100644 index 0000000..69926cd --- /dev/null +++ b/static/library/threads_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/udemy.svg b/static/library/udemy.svg index 5089365..81ce3f0 100644 --- a/static/library/udemy.svg +++ b/static/library/udemy.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/static/library/udemy_dark.svg b/static/library/udemy_dark.svg new file mode 100644 index 0000000..1fe9d5e --- /dev/null +++ b/static/library/udemy_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/unity.svg b/static/library/unity.svg index 259a741..e2b9199 100644 --- a/static/library/unity.svg +++ b/static/library/unity.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/static/library/unity_dark.svg b/static/library/unity_dark.svg new file mode 100644 index 0000000..54814f1 --- /dev/null +++ b/static/library/unity_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/unreal_engine.svg b/static/library/unreal_engine.svg index d3501d5..d636275 100644 --- a/static/library/unreal_engine.svg +++ b/static/library/unreal_engine.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/unreal_engine_dark.svg b/static/library/unreal_engine_dark.svg new file mode 100644 index 0000000..d3501d5 --- /dev/null +++ b/static/library/unreal_engine_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/vercel.svg b/static/library/vercel.svg index ef13999..ef721fe 100644 --- a/static/library/vercel.svg +++ b/static/library/vercel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/vercel_dark.svg b/static/library/vercel_dark.svg new file mode 100644 index 0000000..f543bed --- /dev/null +++ b/static/library/vercel_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/x.svg b/static/library/x.svg index 056fd8f..1278823 100644 --- a/static/library/x.svg +++ b/static/library/x.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/static/library/x_dark.svg b/static/library/x_dark.svg new file mode 100644 index 0000000..056fd8f --- /dev/null +++ b/static/library/x_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/xstate_dark.svg b/static/library/xstate_dark.svg new file mode 100644 index 0000000..ba17ed8 --- /dev/null +++ b/static/library/xstate_dark.svg @@ -0,0 +1 @@ +