From 8a74f97ac0812529f73d809540670a9242e47f5b Mon Sep 17 00:00:00 2001 From: Mehdi Dara Date: Tue, 16 Jan 2024 11:33:54 +0330 Subject: [PATCH 1/7] =?UTF-8?q?=E2=9A=A1=20Added=20Volta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 9 +++++++++ static/library/volta-dark.svg | 1 + static/library/volta-light.svg | 1 + 3 files changed, 11 insertions(+) create mode 100644 static/library/volta-dark.svg create mode 100644 static/library/volta-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 48d50f3..5f70a71 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1370,6 +1370,15 @@ export const svgs: iSVG[] = [ route: '/library/crossplane.svg', url: 'https://crossplane.io/' }, + { + title: 'Volta', + category: 'Software', + route: { + light: '/library/volta-dark.svg', + dark: '/library/volta-light.svg' + }, + url: 'https://volta.net/' + }, { title: 'Typesense', category: 'Software', diff --git a/static/library/volta-dark.svg b/static/library/volta-dark.svg new file mode 100644 index 0000000..0eac400 --- /dev/null +++ b/static/library/volta-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/volta-light.svg b/static/library/volta-light.svg new file mode 100644 index 0000000..971c8cd --- /dev/null +++ b/static/library/volta-light.svg @@ -0,0 +1 @@ + \ No newline at end of file From 31d69e36c89f213bcec850d7e250ba2d94518323 Mon Sep 17 00:00:00 2001 From: Mehdi Dara Date: Tue, 16 Jan 2024 11:48:21 +0330 Subject: [PATCH 2/7] =?UTF-8?q?=F0=9F=AA=99=20Added=20Binance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 ++++++ static/library/binance.svg | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 static/library/binance.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 5f70a71..61c00e4 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1112,6 +1112,12 @@ export const svgs: iSVG[] = [ route: '/library/stackblitz.svg', url: 'https://stackblitz.com/' }, + { + title: 'Binance', + category: 'Crypto', + route: '/library/binance.svg', + url: 'https://binance.com/' + }, { title: 'Messenger', category: 'Social', diff --git a/static/library/binance.svg b/static/library/binance.svg new file mode 100644 index 0000000..590f4ee --- /dev/null +++ b/static/library/binance.svg @@ -0,0 +1,4 @@ + + + + From d8f6c456b23d8e7a201190723be7ef6333a814a1 Mon Sep 17 00:00:00 2001 From: Mehdi Dara Date: Tue, 16 Jan 2024 11:53:07 +0330 Subject: [PATCH 3/7] =?UTF-8?q?=F0=9F=AA=99=20Updated=20Tron=20TRX?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 12 ++++++------ static/library/tron.svg | 4 ++++ static/library/trx.svg | 1 - 3 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 static/library/tron.svg delete mode 100644 static/library/trx.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 61c00e4..446a932 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1427,12 +1427,6 @@ export const svgs: iSVG[] = [ route: '/library/bnb.svg', url: 'https://www.bnbchain.org/' }, - { - title: 'TRON', - category: 'Crypto', - route: '/library/trx.svg', - url: 'https://tron.network/' - }, { title: 'Chainlink', category: 'Crypto', @@ -1565,6 +1559,12 @@ export const svgs: iSVG[] = [ route: '/library/datadog.svg', url: 'https://www.datadoghq.com/' }, + { + title: 'Tron', + category: 'Crypto', + route: '/library/tron.svg', + url: 'https://tron.network/' + }, { title: 'Randevum', category: 'Software', diff --git a/static/library/tron.svg b/static/library/tron.svg new file mode 100644 index 0000000..137b3f3 --- /dev/null +++ b/static/library/tron.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/library/trx.svg b/static/library/trx.svg deleted file mode 100644 index a95ffb8..0000000 --- a/static/library/trx.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From c21ae979efd9a4b30f9f13241142307534995a65 Mon Sep 17 00:00:00 2001 From: Mehdi Dara Date: Tue, 16 Jan 2024 12:05:44 +0330 Subject: [PATCH 4/7] =?UTF-8?q?=F0=9F=91=80=20Updated=20ChainLink?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 6 +++++- static/library/link-wordmark-dark.svg | 19 +++++++++++++++++++ static/library/link-wordmark-light.svg | 19 +++++++++++++++++++ static/library/link.svg | 12 +++++++++++- 4 files changed, 54 insertions(+), 2 deletions(-) create mode 100644 static/library/link-wordmark-dark.svg create mode 100644 static/library/link-wordmark-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 446a932..ec70188 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -1428,9 +1428,13 @@ export const svgs: iSVG[] = [ url: 'https://www.bnbchain.org/' }, { - title: 'Chainlink', + title: 'Link', category: 'Crypto', route: '/library/link.svg', + wordmark: { + light: '/library/link-wordmark-light.svg', + dark: '/library/link-wordmark-dark.svg' + }, url: 'https://chain.link/' }, { diff --git a/static/library/link-wordmark-dark.svg b/static/library/link-wordmark-dark.svg new file mode 100644 index 0000000..4bc34e6 --- /dev/null +++ b/static/library/link-wordmark-dark.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/static/library/link-wordmark-light.svg b/static/library/link-wordmark-light.svg new file mode 100644 index 0000000..a55db3d --- /dev/null +++ b/static/library/link-wordmark-light.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/static/library/link.svg b/static/library/link.svg index 7b10f56..ea332a6 100644 --- a/static/library/link.svg +++ b/static/library/link.svg @@ -1 +1,11 @@ - \ No newline at end of file + + + + + + + + + + + From dd314719b4d8dd34a25238f54ed7b5554ac3763e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Dur=C3=A1n?= Date: Wed, 17 Jan 2024 19:22:24 +0100 Subject: [PATCH 5/7] =?UTF-8?q?=E2=99=BF=EF=B8=8F=20Update=20category=20li?= =?UTF-8?q?nk=20color=20in=20svgCard=20component=20to=20fix=20accesibility?= =?UTF-8?q?=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/svgCard.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/svgCard.svelte b/src/components/svgCard.svelte index f52b388..4cce688 100644 --- a/src/components/svgCard.svelte +++ b/src/components/svgCard.svelte @@ -179,7 +179,7 @@

{svgInfo.category}{svgInfo.category} From fae5d8543b758236a80d1588be4dc0214f78ec5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Dur=C3=A1n?= Date: Wed, 17 Jan 2024 19:22:38 +0100 Subject: [PATCH 6/7] =?UTF-8?q?=E2=99=BF=EF=B8=8F=20Make=20card=20visibile?= =?UTF-8?q?=20for=20screen=20readers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/cardSpotlight.svelte | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/components/cardSpotlight.svelte b/src/components/cardSpotlight.svelte index f72ce06..43660de 100644 --- a/src/components/cardSpotlight.svelte +++ b/src/components/cardSpotlight.svelte @@ -1,13 +1,13 @@ - + From cc012324e6da2b82e65925fdfe8568428af26d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Dur=C3=A1n?= Date: Wed, 17 Jan 2024 19:23:19 +0100 Subject: [PATCH 7/7] =?UTF-8?q?=E2=99=BF=EF=B8=8F=20Add=20discernible=20la?= =?UTF-8?q?bels=20to=20navbar=20links?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/navbar.svelte | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/navbar.svelte b/src/components/navbar.svelte index bf7dc42..adebe45 100644 --- a/src/components/navbar.svelte +++ b/src/components/navbar.svelte @@ -27,13 +27,15 @@ name: 'Extensions', url: 'https://github.com/pheralb/svgl?tab=readme-ov-file#-extensions', icon: ArrowUpRight, - external: true + external: true, + label: "Go to the SVGL's extensions section" }, { name: 'Submit logo', url: 'https://github.com/pheralb/svgl#-getting-started', icon: ArrowUpRight, - external: true + external: true, + label: "Go to the SVGL's getting started section" } ]; @@ -48,7 +50,7 @@ >