diff --git a/src/components/SponsorList.tsx b/src/components/SponsorList.tsx
index 7430968..9149947 100644
--- a/src/components/SponsorList.tsx
+++ b/src/components/SponsorList.tsx
@@ -1,6 +1,16 @@
import { Sponsor } from "@site/src/components/Sponsors/Sponsor";
export const SponsorList = () => {
+
+ const emeraldSponsors = [
+ {
+ imgSrc: "/sponsors/logos/n8n.png",
+ url: "https://n8n.io/",
+ name: "n8n",
+ description:
+ "Does your interface have a backend yet? Try n8n",
+ },
+ ];
const sponsors = [
{
imgSrc: "/sponsors/sponsor.png",
@@ -52,7 +62,7 @@ export const SponsorList = () => {
- {sponsors.map((sponsor) => (
+ {emeraldSponsors.map((sponsor) => (
))}
diff --git a/src/components/Sponsors/TopBanner.tsx b/src/components/Sponsors/TopBanner.tsx
index 821bc0b..5f84bd1 100644
--- a/src/components/Sponsors/TopBanner.tsx
+++ b/src/components/Sponsors/TopBanner.tsx
@@ -10,14 +10,14 @@ export const TopBanner = ({ items }) => {
{
const items = [
{
- imgSrc: "/sponsors/banners/openwebui-banner.png",
- mobileImgSrc: "/sponsors/banners/openwebui-banner-mobile.png",
- url: "https://openwebui.com",
- name: "Open WebUI Community",
+ imgSrc: "/sponsors/banners/n8n-banner.png",
+ mobileImgSrc: "/sponsors/banners/n8n-banner-mobile.png",
+ url: "https://n8n.io/",
+ name: "n8n",
description:
- "Join our growing community! Sign up to gain access to exclusive models, tools, and functions.",
+ "Does your interface have a backend yet? Try n8n",
},
{
imgSrc: "/sponsors/banners/placeholder.png",
diff --git a/static/sponsors/banners/n8n-banner-mobile.png b/static/sponsors/banners/n8n-banner-mobile.png
new file mode 100644
index 0000000..b6b2ec3
Binary files /dev/null and b/static/sponsors/banners/n8n-banner-mobile.png differ
diff --git a/static/sponsors/banners/n8n-banner.png b/static/sponsors/banners/n8n-banner.png
new file mode 100644
index 0000000..2b073b0
Binary files /dev/null and b/static/sponsors/banners/n8n-banner.png differ
diff --git a/static/sponsors/logos/n8n.png b/static/sponsors/logos/n8n.png
new file mode 100644
index 0000000..7466ca5
Binary files /dev/null and b/static/sponsors/logos/n8n.png differ