🛠️ Merge branch 'main' of github.com:pheralb/svgl into dev

This commit is contained in:
pheralb
2025-08-29 13:49:00 +01:00
20 changed files with 105 additions and 33 deletions
+56 -2
View File
@@ -30,8 +30,16 @@ export const svgs: iSVG[] = [
{
title: "Windsurf",
category: ["Software", "AI"],
route: "/library/windsurf-logo.svg",
url: "https://codeium.com/windsurf",
route: {
light: "/library/windsurf-light.svg",
dark: "/library/windsurf-dark.svg",
},
wordmark: {
light: "/library/windsurf-wordmark-light.svg",
dark: "/library/windsurf-wordmark-dark.svg",
},
url: "https://windsurf.com/editor",
brandUrl: "https://windsurf.com/brand",
},
{
title: "Mattermost",
@@ -3811,4 +3819,50 @@ export const svgs: iSVG[] = [
route: "/library/heptabase.svg",
url: "https://heptabase.com/",
},
{
title: "UnJS",
category: "Library",
route: "/library/unjs.svg",
url: "https://unjs.io/",
},
{
title: "PowerSync",
category: ["Sync Engine", "Database", "Library"],
route: "/library/powersync.svg",
wordmark: {
light: "/library/powersync-wordmark-light.svg",
dark: "/library/powersync-wordmark-dark.svg",
},
url: "https://powersync.com/",
},
{
title: "n8n",
category: ["Platform", "Automation", "AI"],
route: "/library/n8n.svg",
wordmark: {
dark: "/library/n8n-wordmark-dark.svg",
light: "/library/n8n-wordmark-light.svg",
},
url: "https://n8n.io/",
},
{
title: "Kibo UI",
category: "Library",
route: {
light: "/library/kibo-ui-light.svg",
dark: "/library/kibo-ui-dark.svg",
},
url: "https://kibo-ui.com/",
},
{
title: "Ahrefs",
category: "Platform",
route: "/library/ahrefs.svg",
wordmark: {
dark: "/library/ahrefs-wordmark-dark.svg",
light: "/library/ahrefs-wordmark-light.svg",
},
url: "https://ahrefs.com/",
brandUrl: "https://ahrefs.com/logo",
},
];
+4 -1
View File
@@ -31,4 +31,7 @@ export type tCategory =
| "Config"
| "Secrets"
| "IaC"
| "Analytics";
| "Analytics"
| "Sync Engine"
| "Platform"
| "Automation";