From 144fa7d7c4b7eec6f29f0a552ab1f8b6cf938581 Mon Sep 17 00:00:00 2001
From: Agriya Khetarpal <74401230+agriyakhetarpal@users.noreply.github.com>
Date: Tue, 15 Jul 2025 05:25:02 +0530
Subject: [PATCH 1/4] Add Zulip and Zulip wordmark logos
---
static/library/zulip-wordmark.svg | 1 +
static/library/zulip.svg | 1 +
2 files changed, 2 insertions(+)
create mode 100644 static/library/zulip-wordmark.svg
create mode 100644 static/library/zulip.svg
diff --git a/static/library/zulip-wordmark.svg b/static/library/zulip-wordmark.svg
new file mode 100644
index 0000000..74c5807
--- /dev/null
+++ b/static/library/zulip-wordmark.svg
@@ -0,0 +1 @@
+
diff --git a/static/library/zulip.svg b/static/library/zulip.svg
new file mode 100644
index 0000000..3ef88ee
--- /dev/null
+++ b/static/library/zulip.svg
@@ -0,0 +1 @@
+
From 4347dc52c37bceb3eafbcde777021a3c8393f27b Mon Sep 17 00:00:00 2001
From: Agriya Khetarpal <74401230+agriyakhetarpal@users.noreply.github.com>
Date: Tue, 15 Jul 2025 05:26:27 +0530
Subject: [PATCH 2/4] Register Zulip set of logos
---
src/data/svgs.ts | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/data/svgs.ts b/src/data/svgs.ts
index fa3c62d..f6eb588 100644
--- a/src/data/svgs.ts
+++ b/src/data/svgs.ts
@@ -3742,4 +3742,13 @@ export const svgs: iSVG[] = [
route: '/library/google-cloud.svg',
url: 'https://cloud.google.com/'
},
+ {
+ title: 'Zulip',
+ category: ['Software', 'Social'],
+ route: '/library/zulip.svg',
+ wordmark: '/library/zulip-wordmark.svg',
+ url: 'https://zulip.com/',
+ brandUrl:
+ 'https://github.com/zulip/zulip/tree/bd29fb3e2691daef570ba5661351922a16782dd2/static/images/logo'
+ }
];
From 7b5e1d99dad9b859ab43777d52cfced60e0bc1f5 Mon Sep 17 00:00:00 2001
From: estebancastano
Date: Sat, 19 Jul 2025 19:37:39 -0500
Subject: [PATCH 3/4] feat: added mulesoft svg icon
---
src/data/svgs.ts | 6 ++++++
static/library/mulesoft.svg | 40 +++++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
create mode 100644 static/library/mulesoft.svg
diff --git a/src/data/svgs.ts b/src/data/svgs.ts
index fa3c62d..64fca32 100644
--- a/src/data/svgs.ts
+++ b/src/data/svgs.ts
@@ -63,6 +63,12 @@ export const svgs: iSVG[] = [
route: '/library/amazon-q.svg',
url: 'https://aws.amazon.com/q'
},
+ {
+ title: 'Mulesoft',
+ category: 'Software',
+ route: '/library/mulesoft.svg',
+ url: 'https://www.mulesoft.com/'
+ },
{
title: 'UV',
category: 'Devtool',
diff --git a/static/library/mulesoft.svg b/static/library/mulesoft.svg
new file mode 100644
index 0000000..f7c2c6b
--- /dev/null
+++ b/static/library/mulesoft.svg
@@ -0,0 +1,40 @@
+
+
+
From 6d031bc9956a13a1e794ba422c9b07e87784e4bf Mon Sep 17 00:00:00 2001
From: ria-ang
Date: Sat, 6 Sep 2025 11:48:19 +0900
Subject: [PATCH 4/4] =?UTF-8?q?feat:=20=F0=9F=93=A6=20Add=20Kafka=20logo?=
=?UTF-8?q?=20and=20wordmark=20svg?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/data/svgs.ts | 15 +++++++++++++--
static/library/apache-kafka-logo.svg | 1 +
static/library/apache-kafka-wordmark-dark.svg | 1 +
static/library/apache-kafka-wordmark-light.svg | 1 +
4 files changed, 16 insertions(+), 2 deletions(-)
create mode 100644 static/library/apache-kafka-logo.svg
create mode 100644 static/library/apache-kafka-wordmark-dark.svg
create mode 100644 static/library/apache-kafka-wordmark-light.svg
diff --git a/src/data/svgs.ts b/src/data/svgs.ts
index 694dc64..f33e3ae 100644
--- a/src/data/svgs.ts
+++ b/src/data/svgs.ts
@@ -3812,6 +3812,17 @@ export const svgs: iSVG[] = [
route: '/library/eslint.svg',
url: 'https://eslint.org/'
},
+ {
+ title: 'Apache Kafka',
+ category: 'Analytics',
+ route: '/library/apache-kafka-logo.svg',
+ wordmark: {
+ light: '/library/apache-kafka-wordmark-light.svg',
+ dark: '/library/apache-kafka-wordmark-dark.svg'
+ },
+ url: 'https://kafka.apache.org/',
+ brandUrl: 'https://kafka.apache.org/brand'
+ },
{
title: 'PlainSignal',
category: 'Analytics',
@@ -3839,8 +3850,8 @@ export const svgs: iSVG[] = [
dark: '/library/powersync-wordmark-dark.svg'
},
url: 'https://powersync.com/'
-},
-{
+ },
+ {
title: 'n8n',
category: ['Platform', 'Automation', 'AI'],
route: '/library/n8n.svg',
diff --git a/static/library/apache-kafka-logo.svg b/static/library/apache-kafka-logo.svg
new file mode 100644
index 0000000..305d876
--- /dev/null
+++ b/static/library/apache-kafka-logo.svg
@@ -0,0 +1 @@
+
diff --git a/static/library/apache-kafka-wordmark-dark.svg b/static/library/apache-kafka-wordmark-dark.svg
new file mode 100644
index 0000000..8bd6396
--- /dev/null
+++ b/static/library/apache-kafka-wordmark-dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/library/apache-kafka-wordmark-light.svg b/static/library/apache-kafka-wordmark-light.svg
new file mode 100644
index 0000000..f3d2eb2
--- /dev/null
+++ b/static/library/apache-kafka-wordmark-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file