From c05d962964ecc82b0d1036e4ffb69c973573d5dc Mon Sep 17 00:00:00 2001 From: Al-Amin Firdows Date: Mon, 28 Apr 2025 14:39:34 +0600 Subject: [PATCH 1/2] feat: Add nginx SVG and remix wordmark assets --- src/data/svgs.ts | 14 ++++++++++++- static/library/remix_wordmark_dark.svg | 26 +++++++++++++++++++++++++ static/library/remix_wordmark_light.svg | 15 ++++++++++++++ 3 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 static/library/remix_wordmark_dark.svg create mode 100644 static/library/remix_wordmark_light.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 20d2756..fe37309 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -194,6 +194,13 @@ export const svgs: iSVG[] = [ url: 'https://vuetifyjs.com/', brandUrl: 'https://vuetifyjs.com/en/resources/brand-kit/' }, + { + title: 'nginx', + category: 'Software', + route: '/library/nginx.svg', + url: 'https://nginx.org/', + brandUrl: 'https://nuxt.com/design-kit' + }, { title: 'Nuxt', category: 'Framework', @@ -2442,7 +2449,12 @@ export const svgs: iSVG[] = [ light: '/library/remix_light.svg', dark: '/library/remix_dark.svg' }, - url: 'https://remix.run/' + wordmark: { + light: "/library/remix_wordmark_light.svg", + dark: "/library/remix_wordmark_dark.svg" + }, + url: 'https://remix.run/', + brandUrl: 'https://remix.run/brand' }, { title: 'Steam', diff --git a/static/library/remix_wordmark_dark.svg b/static/library/remix_wordmark_dark.svg new file mode 100644 index 0000000..2251a8b --- /dev/null +++ b/static/library/remix_wordmark_dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/library/remix_wordmark_light.svg b/static/library/remix_wordmark_light.svg new file mode 100644 index 0000000..063be33 --- /dev/null +++ b/static/library/remix_wordmark_light.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + From 4ae85570ba6eb3b433b6d586aed98bbe06e499c0 Mon Sep 17 00:00:00 2001 From: Al-Amin Firdows Date: Mon, 28 Apr 2025 14:44:25 +0600 Subject: [PATCH 2/2] refactor: Remove nginx SVG entry from the SVGs list --- src/data/svgs.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index fe37309..1ce9a0f 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -194,13 +194,6 @@ export const svgs: iSVG[] = [ url: 'https://vuetifyjs.com/', brandUrl: 'https://vuetifyjs.com/en/resources/brand-kit/' }, - { - title: 'nginx', - category: 'Software', - route: '/library/nginx.svg', - url: 'https://nginx.org/', - brandUrl: 'https://nuxt.com/design-kit' - }, { title: 'Nuxt', category: 'Framework',