From 2aef1ed8143bc254892128ad0126a3ffe6c0004d Mon Sep 17 00:00:00 2001 From: Richard Diphoorn Date: Sat, 3 May 2025 01:08:51 +0200 Subject: [PATCH 1/3] feat: add terraform logo --- src/data/svgs.ts | 7 +++++++ src/types/categories.ts | 3 ++- static/library/terraform.svg | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 static/library/terraform.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index c2eefd1..4e76b75 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3590,5 +3590,12 @@ export const svgs: iSVG[] = [ }, url: 'https://clerk.com/', brandUrl: 'https://clerk.com/design' + }, + { + title: 'Terraform', + category: ['Software', 'Language', 'IaC'], + route: 'library/terraform.svg', + url: 'https://terraform.io', + brandUrl: 'https://brand.hashicorp.com' } ]; diff --git a/src/types/categories.ts b/src/types/categories.ts index ae77c01..4d9e96a 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -29,4 +29,5 @@ export type tCategory = | 'Authentication' | 'IoT' | 'Config' - | 'Secrets'; + | 'Secrets' + | 'Iac'; diff --git a/static/library/terraform.svg b/static/library/terraform.svg new file mode 100644 index 0000000..b2bf281 --- /dev/null +++ b/static/library/terraform.svg @@ -0,0 +1 @@ + \ No newline at end of file From e50c1abb3397b9d203d594bfcf776e066d934b8f Mon Sep 17 00:00:00 2001 From: codeitnav Date: Sat, 3 May 2025 17:01:04 +0530 Subject: [PATCH 2/3] Added Mattermost logo --- src/data/svgs.ts | 9 +++++++++ static/library/mattermost-dark.svg | 10 ++++++++++ static/library/mattermost-light.svg | 2 ++ 3 files changed, 21 insertions(+) create mode 100644 static/library/mattermost-dark.svg create mode 100644 static/library/mattermost-light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index c2eefd1..0a94f8a 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -7,6 +7,15 @@ export const svgs: iSVG[] = [ route: '/library/windsurf-logo.svg', url: 'https://codeium.com/windsurf' }, + { + title: 'Mattermost', + category: 'Software', + "route": { + "light": "/library/mattermost-light.svg", + "dark": "/library/mattermost-dark.svg" + }, + url: 'http://mattermost.com/' + }, { title: 'daisyUI', category: 'Library', diff --git a/static/library/mattermost-dark.svg b/static/library/mattermost-dark.svg new file mode 100644 index 0000000..3901dfa --- /dev/null +++ b/static/library/mattermost-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/static/library/mattermost-light.svg b/static/library/mattermost-light.svg new file mode 100644 index 0000000..9b05532 --- /dev/null +++ b/static/library/mattermost-light.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file From bcec30609402151d4ed5aab5a4dbd4e0d0e13d01 Mon Sep 17 00:00:00 2001 From: ridemountainpig Date: Sun, 11 May 2025 17:05:51 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20Fix=20Terraform=20SVG?= =?UTF-8?q?=20route=20&=20category?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 2 +- src/types/categories.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 4fc1e21..0efb7ad 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3612,7 +3612,7 @@ export const svgs: iSVG[] = [ { title: 'Terraform', category: ['Software', 'Language', 'IaC'], - route: 'library/terraform.svg', + route: '/library/terraform.svg', url: 'https://terraform.io', brandUrl: 'https://brand.hashicorp.com' } diff --git a/src/types/categories.ts b/src/types/categories.ts index 4d9e96a..8483c29 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -30,4 +30,4 @@ export type tCategory = | 'IoT' | 'Config' | 'Secrets' - | 'Iac'; + | 'IaC';