📦 Fix `drizzle & zed` logo for light/dark mode

This commit is contained in:
pheralb
2024-11-18 17:07:06 +00:00
parent efdcdb22fd
commit 51567298e3
5 changed files with 11 additions and 3 deletions
+8 -2
View File
@@ -3010,7 +3010,10 @@ export const svgs: iSVG[] = [
{
title: 'Drizzle ORM',
category: ['Library', 'Database'],
route: '/library/drizzle-orm.svg',
route: {
light: '/library/drizzle-orm_light.svg',
dark: '/library/drizzle-orm_dark.svg'
},
url: 'https://orm.drizzle.team/'
},
{
@@ -3025,7 +3028,10 @@ export const svgs: iSVG[] = [
{
title: 'Zed',
category: 'Software',
route: '/library/zed-logo.svg',
route: {
light: '/library/zed-logo.svg',
dark: '/library/zed-logo_dark.svg'
},
url: 'https://zed.dev/'
}
];