From 6470e39d03cf90615b4a4806bdc77db98c23ccbc Mon Sep 17 00:00:00 2001 From: Miguel Vega Date: Mon, 18 Nov 2024 13:19:54 -0500 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=A6=20Add=20SoundCloud=20SVG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 13 +++++++++++++ static/library/soundcloud-logo.svg | 1 + static/library/soundcloud-logo_dark.svg | 1 + static/library/soundcloud-wordmark.svg | 1 + static/library/soundcloud-wordmark_dark.svg | 1 + 5 files changed, 17 insertions(+) create mode 100644 static/library/soundcloud-logo.svg create mode 100644 static/library/soundcloud-logo_dark.svg create mode 100644 static/library/soundcloud-wordmark.svg create mode 100644 static/library/soundcloud-wordmark_dark.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 45cf107..4e5b856 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3048,5 +3048,18 @@ export const svgs: iSVG[] = [ dark: '/library/polar-sh_dark.svg' }, url: 'https://polar.sh/' + }, + { + title: 'SoundCloud', + category: 'Entertainment', + route: { + light: '/library/soundcloud-logo.svg', + dark: '/library/soundcloud-logo_dark.svg' + }, + wordmark: { + light: '/library/soundcloud-wordmark.svg', + dark: 'library/soundcloud-wordmark_dark.svg' + }, + url: 'https://trpc.io/' } ]; diff --git a/static/library/soundcloud-logo.svg b/static/library/soundcloud-logo.svg new file mode 100644 index 0000000..f8f4cec --- /dev/null +++ b/static/library/soundcloud-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/soundcloud-logo_dark.svg b/static/library/soundcloud-logo_dark.svg new file mode 100644 index 0000000..4014e90 --- /dev/null +++ b/static/library/soundcloud-logo_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/soundcloud-wordmark.svg b/static/library/soundcloud-wordmark.svg new file mode 100644 index 0000000..43c05a2 --- /dev/null +++ b/static/library/soundcloud-wordmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/soundcloud-wordmark_dark.svg b/static/library/soundcloud-wordmark_dark.svg new file mode 100644 index 0000000..2bd0c89 --- /dev/null +++ b/static/library/soundcloud-wordmark_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file From 2942e2685287e68bd0c2ac5957028e5f23c35cd6 Mon Sep 17 00:00:00 2001 From: Miguel Vega Date: Mon, 18 Nov 2024 13:21:31 -0500 Subject: [PATCH 2/2] fixed soundcloud site url --- 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 4e5b856..94c4f7d 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3060,6 +3060,6 @@ export const svgs: iSVG[] = [ light: '/library/soundcloud-wordmark.svg', dark: 'library/soundcloud-wordmark_dark.svg' }, - url: 'https://trpc.io/' + url: 'https://soundcloud.com/' } ];