From fdb9f91d2a2d9d01ff73f1119cd1db90028edf6c Mon Sep 17 00:00:00 2001 From: pheralb Date: Mon, 15 Sep 2025 17:52:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Create=20Nuxt=20category=20&=20u?= =?UTF-8?q?pdate=20svgs=20data?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/svgs.ts | 12 ++++++------ src/types/categories.ts | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 8c22e91..f4291ae 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -266,7 +266,7 @@ export const svgs: iSVG[] = [ }, { title: 'Nuxt', - category: 'Framework', + category: ['Framework', 'Nuxt'], route: '/library/nuxt.svg', url: 'https://nuxt.com/', wordmark: { @@ -277,7 +277,7 @@ export const svgs: iSVG[] = [ }, { title: 'Nuxt UI', - category: 'Library', + category: ['Library', 'Nuxt'], url: 'https://ui.nuxt.com/', route: { light: '/library/nuxt-ui-wordmark-light.svg', @@ -287,7 +287,7 @@ export const svgs: iSVG[] = [ }, { title: 'Nuxt Content', - category: 'Library', + category: ['Library', 'Nuxt'], url: 'https://content.nuxt.com/', route: { light: '/library/nuxt-content-wordmark-light.svg', @@ -297,7 +297,7 @@ export const svgs: iSVG[] = [ }, { title: 'Nuxt Studio', - category: 'Library', + category: ['Library', 'Nuxt'], url: 'https://studio.nuxt.com/', route: { light: '/library/nuxt-studio-wordmark-light.svg', @@ -307,7 +307,7 @@ export const svgs: iSVG[] = [ }, { title: 'NuxtHub', - category: 'Library', + category: ['Library', 'Nuxt'], url: 'https://hub.nuxt.com/', route: '/library/nuxthub.svg', wordmark: { @@ -318,7 +318,7 @@ export const svgs: iSVG[] = [ }, { title: 'Docus', - category: 'Software', + category: ['Software', 'Nuxt'], url: 'https://docus.dev/', route: { light: '/library/docus-light.svg', diff --git a/src/types/categories.ts b/src/types/categories.ts index 57dd4c7..ddfd895 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -34,4 +34,5 @@ export type tCategory = | 'Analytics' | 'Sync Engine' | 'Platform' - | 'Automation'; + | 'Automation' + | 'Nuxt';