From c039a5b90df70946a62755316e9882f89f65e50c Mon Sep 17 00:00:00 2001 From: Brayan Stiven Chavarro Morales <94658139+BrayanChavarro@users.noreply.github.com> Date: Mon, 12 Feb 2024 13:13:08 -0500 Subject: [PATCH 01/10] mask="url(#b)" is removed from path tags because when it is used it does not show the icon, deleting that part works if it is used. --- static/library/vscode.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/library/vscode.svg b/static/library/vscode.svg index 1ea3678..bcf3f13 100644 --- a/static/library/vscode.svg +++ b/static/library/vscode.svg @@ -1 +1 @@ - \ No newline at end of file + From 048ea24cfb88b1045c847b998d6e343352e6ff71 Mon Sep 17 00:00:00 2001 From: Igor Bedesqui Date: Tue, 20 Feb 2024 00:51:47 +0000 Subject: [PATCH 02/10] feat: add axiom wordmarks --- src/data/svgs.ts | 4 ++++ static/library/axiom-wordmark-dark.svg | 10 ++++++++++ static/library/axiom-wordmark-light.svg | 10 ++++++++++ 3 files changed, 24 insertions(+) create mode 100644 static/library/axiom-wordmark-dark.svg create mode 100644 static/library/axiom-wordmark-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index d5627d9..67f1856 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1866,6 +1866,10 @@ export const svgs: iSVG[] = [ dark: '/library/axiom-dark.svg', light: '/library/axiom-light.svg' }, + wordmark: { + light: '/library/axiom-wordmark-light.svg', + dark: '/library/axiom-wordmark-dark.svg' + }, url: 'https://axiom.co/' }, { diff --git a/static/library/axiom-wordmark-dark.svg b/static/library/axiom-wordmark-dark.svg new file mode 100644 index 0000000..8f46535 --- /dev/null +++ b/static/library/axiom-wordmark-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/static/library/axiom-wordmark-light.svg b/static/library/axiom-wordmark-light.svg new file mode 100644 index 0000000..cb80b8b --- /dev/null +++ b/static/library/axiom-wordmark-light.svg @@ -0,0 +1,10 @@ + + + + + + + + + + From f98a787c2a3056e9824efd761272a9c8746d9ad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?erik=20antony=20mu=C3=B1ico=20galvan?= <60374430+erik-antony-mg@users.noreply.github.com> Date: Wed, 21 Feb 2024 20:32:57 -0500 Subject: [PATCH 03/10] Update tailwindcss.svg no se visualizaba el svg de tailwind el problema era del id creo que no lo encontraba en el path cambie el id a gradient y ahora si se muestra el svg de tailwind --- static/library/tailwindcss.svg | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/static/library/tailwindcss.svg b/static/library/tailwindcss.svg index 03c4c78..c41823b 100644 --- a/static/library/tailwindcss.svg +++ b/static/library/tailwindcss.svg @@ -1 +1,15 @@ - \ No newline at end of file + + + + + + Date: Thu, 22 Feb 2024 18:38:23 -0500 Subject: [PATCH 04/10] =?UTF-8?q?feat:=20=E2=9C=A8=20add=20ngrok=20logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 9 +++++++++ static/library/ngrok-dark.svg | 3 +++ static/library/ngrok-light.svg | 3 +++ 3 files changed, 15 insertions(+) create mode 100644 static/library/ngrok-dark.svg create mode 100644 static/library/ngrok-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 67f1856..fe61d4a 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2491,5 +2491,14 @@ export const svgs: iSVG[] = [ category: 'Social', route: '/library/tiktok.svg', url: 'https://www.tiktok.com/' + }, + { + title: 'Ngrok', + category: 'Software', + route: { + dark: '/library/ngrok-dark.svg', + light: '/library/ngrok-light.svg' + }, + url: 'https://ngrok.com' } ]; diff --git a/static/library/ngrok-dark.svg b/static/library/ngrok-dark.svg new file mode 100644 index 0000000..dbf2564 --- /dev/null +++ b/static/library/ngrok-dark.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/library/ngrok-light.svg b/static/library/ngrok-light.svg new file mode 100644 index 0000000..05283c2 --- /dev/null +++ b/static/library/ngrok-light.svg @@ -0,0 +1,3 @@ + + + From 7c9de0afcc007c5a2315b173d898acd083e8bfbf Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Thu, 22 Feb 2024 19:13:41 -0500 Subject: [PATCH 05/10] feat: add lemon squeezy logo --- src/data/svgs.ts | 6 ++++++ static/library/lemonsqueezy.svg | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 static/library/lemonsqueezy.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index fe61d4a..2e45659 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2500,5 +2500,11 @@ export const svgs: iSVG[] = [ light: '/library/ngrok-light.svg' }, url: 'https://ngrok.com' + }, + { + title: 'Lemon Squeezy', + category: 'Software', + route: '/library/lemonsqueezy.svg', + url: 'https://www.lemonsqueezy.com' } ]; diff --git a/static/library/lemonsqueezy.svg b/static/library/lemonsqueezy.svg new file mode 100644 index 0000000..cc757c2 --- /dev/null +++ b/static/library/lemonsqueezy.svg @@ -0,0 +1,3 @@ + + + From 3abfa5e34ef0b92dd3e51b2f49f91aec7e616135 Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Thu, 22 Feb 2024 19:43:26 -0500 Subject: [PATCH 06/10] feat: add asana logo --- src/data/svgs.ts | 10 ++++++++++ static/library/asana-logo.svg | 3 +++ static/library/asana-wordmark-dark.svg | 4 ++++ static/library/asana-wordmark-light.svg | 4 ++++ 4 files changed, 21 insertions(+) create mode 100644 static/library/asana-logo.svg create mode 100644 static/library/asana-wordmark-dark.svg create mode 100644 static/library/asana-wordmark-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 2e45659..6169648 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2506,5 +2506,15 @@ export const svgs: iSVG[] = [ category: 'Software', route: '/library/lemonsqueezy.svg', url: 'https://www.lemonsqueezy.com' + }, + { + title: 'Asana', + category: 'Software', + route: '/library/asana-logo.svg', + wordmark: { + dark: '/library/asana-wordmark-dark.svg', + light: '/library/asana-wordmark-light.svg' + }, + url: 'https://asana.com' } ]; diff --git a/static/library/asana-logo.svg b/static/library/asana-logo.svg new file mode 100644 index 0000000..c24df0a --- /dev/null +++ b/static/library/asana-logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/library/asana-wordmark-dark.svg b/static/library/asana-wordmark-dark.svg new file mode 100644 index 0000000..e233708 --- /dev/null +++ b/static/library/asana-wordmark-dark.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/library/asana-wordmark-light.svg b/static/library/asana-wordmark-light.svg new file mode 100644 index 0000000..377aab5 --- /dev/null +++ b/static/library/asana-wordmark-light.svg @@ -0,0 +1,4 @@ + + + + From 06201212f64c8ecc3c386c7c31a8cda9fad2038c Mon Sep 17 00:00:00 2001 From: ridemountainpig Date: Sat, 24 Feb 2024 13:05:31 +0800 Subject: [PATCH 07/10] fix tailwindcss svg & add zeabur wordmark svg --- src/data/svgs.ts | 4 ++++ static/library/tailwindcss.svg | 2 +- static/library/zeabur_wordmark_dark.svg | 11 +++++++++++ static/library/zeabur_wordmark_light.svg | 1 + 4 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 static/library/zeabur_wordmark_dark.svg create mode 100644 static/library/zeabur_wordmark_light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 6169648..1c1e9c1 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1885,6 +1885,10 @@ export const svgs: iSVG[] = [ light: '/library/zeabur-light.svg', dark: '/library/zeabur-dark.svg' }, + wordmark: { + light: '/library/zeabur_wordmark_light.svg', + dark: '/library/zeabur_wordmark_dark.svg' + }, url: 'https://zeabur.com/' }, { diff --git a/static/library/tailwindcss.svg b/static/library/tailwindcss.svg index c41823b..b2bcee9 100644 --- a/static/library/tailwindcss.svg +++ b/static/library/tailwindcss.svg @@ -12,4 +12,4 @@ diff --git a/static/library/zeabur_wordmark_dark.svg b/static/library/zeabur_wordmark_dark.svg new file mode 100644 index 0000000..aaafaba --- /dev/null +++ b/static/library/zeabur_wordmark_dark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/static/library/zeabur_wordmark_light.svg b/static/library/zeabur_wordmark_light.svg new file mode 100644 index 0000000..519f1e8 --- /dev/null +++ b/static/library/zeabur_wordmark_light.svg @@ -0,0 +1 @@ + \ No newline at end of file From eaddbf981f83441dcd48dd8f0032f0b6dd7eab76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Alvarenga?= Date: Mon, 26 Feb 2024 13:54:24 -0300 Subject: [PATCH 08/10] Add zoom logo --- src/data/svgs.ts | 8 +++++++- static/library/zoom.svg | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 static/library/zoom.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 1c1e9c1..b60e8ae 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2520,5 +2520,11 @@ export const svgs: iSVG[] = [ light: '/library/asana-wordmark-light.svg' }, url: 'https://asana.com' - } + }, + { + title: 'Zoom', + category: 'Software', + route: '/library/zoom.svg', + url: 'https://zoom.us/' + }, ]; diff --git a/static/library/zoom.svg b/static/library/zoom.svg new file mode 100644 index 0000000..fef4506 --- /dev/null +++ b/static/library/zoom.svg @@ -0,0 +1 @@ + \ No newline at end of file From 1eb1f5a9d42583f7bfb675c1f089a87fc4c57739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Alvarenga?= Date: Tue, 27 Feb 2024 12:43:37 -0300 Subject: [PATCH 09/10] Add tinaCMS logo solid and logo with wordmark --- src/data/svgs.ts | 7 +++++++ static/library/tina.svg | 4 ++++ static/library/tina_wordmark.svg | 11 +++++++++++ 3 files changed, 22 insertions(+) create mode 100644 static/library/tina.svg create mode 100644 static/library/tina_wordmark.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index b60e8ae..0c10620 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -2527,4 +2527,11 @@ export const svgs: iSVG[] = [ route: '/library/zoom.svg', url: 'https://zoom.us/' }, + { + title: 'Tina', + category: 'CMS', + route: "/library/tina.svg", + wordmark: "/library/tina_wordmark.svg", + url: "https://tina.io/" + }, ]; diff --git a/static/library/tina.svg b/static/library/tina.svg new file mode 100644 index 0000000..8b253d3 --- /dev/null +++ b/static/library/tina.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/library/tina_wordmark.svg b/static/library/tina_wordmark.svg new file mode 100644 index 0000000..4aef2d0 --- /dev/null +++ b/static/library/tina_wordmark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + From 539c479eae5baa9f755ce5752430fcd85ec503f6 Mon Sep 17 00:00:00 2001 From: Giannina <95765874+GianninaGit@users.noreply.github.com> Date: Tue, 5 Mar 2024 01:21:15 +0100 Subject: [PATCH 10/10] Eliminate fill GitHub icon svg --- static/library/github.svg | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/static/library/github.svg b/static/library/github.svg index a087e65..da73e2b 100644 --- a/static/library/github.svg +++ b/static/library/github.svg @@ -1 +1,10 @@ - \ No newline at end of file + + +