From 1b1c65b053e98b2e54563ce680d7085632875285 Mon Sep 17 00:00:00 2001 From: estebancastano Date: Fri, 6 Jun 2025 09:37:00 -0500 Subject: [PATCH 1/3] Add: UV SVG --- src/data/svgs.ts | 6 ++++++ static/library/uv.svg | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 static/library/uv.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index d050db4..1927c98 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -57,6 +57,12 @@ export const svgs: iSVG[] = [ route: '/library/drive.svg', url: 'https://www.google.com/drive/' }, + { + title: 'UV', + category: 'Devtool', + route: '/library/uv.svg', + url: 'https://docs.astral.sh/uv/' + }, { title: 'Milanote', category: 'Software', diff --git a/static/library/uv.svg b/static/library/uv.svg new file mode 100644 index 0000000..ba859cd --- /dev/null +++ b/static/library/uv.svg @@ -0,0 +1,3 @@ + + + From 5e9c73c2a17b0328536c1c6e3180c9de98452556 Mon Sep 17 00:00:00 2001 From: Nicholas Charriere Date: Thu, 12 Jun 2025 11:03:32 -0700 Subject: [PATCH 2/3] Add Mocha SVGs --- src/data/svgs.ts | 13 +++++++++++++ static/library/mocha-dark.svg | 3 +++ static/library/mocha-dark_wordmark.svg | 15 +++++++++++++++ static/library/mocha-light.svg | 3 +++ static/library/mocha-light_wordmark.svg | 15 +++++++++++++++ 5 files changed, 49 insertions(+) create mode 100644 static/library/mocha-dark.svg create mode 100644 static/library/mocha-dark_wordmark.svg create mode 100644 static/library/mocha-light.svg create mode 100644 static/library/mocha-light_wordmark.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index a8192a7..7a7d43a 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3692,5 +3692,18 @@ export const svgs: iSVG[] = [ route: '/library/lovable.svg', url: 'https://lovable.dev/', brandUrl: 'https://lovable.dev/brand' + }, + { + title: 'Mocha', + category: 'AI', + route: { + light: '/library/mocha-light.svg', + dark: '/library/mocha_dark.svg' + }, + wordmark: { + light: '/library/mocha-light_wordmark.svg', + dark: '/library/mocha-dark_wordmark.svg' + }, + url: 'https://getmocha.com/' } ]; diff --git a/static/library/mocha-dark.svg b/static/library/mocha-dark.svg new file mode 100644 index 0000000..b71c3c9 --- /dev/null +++ b/static/library/mocha-dark.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/library/mocha-dark_wordmark.svg b/static/library/mocha-dark_wordmark.svg new file mode 100644 index 0000000..88d588c --- /dev/null +++ b/static/library/mocha-dark_wordmark.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/static/library/mocha-light.svg b/static/library/mocha-light.svg new file mode 100644 index 0000000..e270c13 --- /dev/null +++ b/static/library/mocha-light.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/library/mocha-light_wordmark.svg b/static/library/mocha-light_wordmark.svg new file mode 100644 index 0000000..7de72fe --- /dev/null +++ b/static/library/mocha-light_wordmark.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + From 1aed6e874cae3df2b5874428b73a3f77377276ef Mon Sep 17 00:00:00 2001 From: Nicholas Charriere Date: Thu, 12 Jun 2025 11:07:55 -0700 Subject: [PATCH 3/3] Fix typo in filename ref --- 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 7a7d43a..ea1fe4b 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3698,7 +3698,7 @@ export const svgs: iSVG[] = [ category: 'AI', route: { light: '/library/mocha-light.svg', - dark: '/library/mocha_dark.svg' + dark: '/library/mocha-dark.svg' }, wordmark: { light: '/library/mocha-light_wordmark.svg',