From 445f9f66de2ac6ffded754dad41f5640efcf1b69 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 05:57:14 +0000 Subject: [PATCH] Add Wix partner profile CTA in hero cgen-7fc2edcd4a714851ab0fa40277449388 --- client/components/wix/WixHero.tsx | 3 +++ client/data/wix/partners.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/client/components/wix/WixHero.tsx b/client/components/wix/WixHero.tsx index 98d62f94..f1b94bb3 100644 --- a/client/components/wix/WixHero.tsx +++ b/client/components/wix/WixHero.tsx @@ -31,6 +31,9 @@ export default function WixHero() { + diff --git a/client/data/wix/partners.ts b/client/data/wix/partners.ts index ea38576a..decf541f 100644 --- a/client/data/wix/partners.ts +++ b/client/data/wix/partners.ts @@ -1,7 +1,7 @@ export type Partner = { name: string; tier?: string | null; url?: string | null }; export const partners: Partner[] = [ - { name: "Wix", tier: "Official Agency Partner", url: "https://www.wix.com/partners" }, + { name: "Wix", tier: "Official Agency Partner", url: "https://www.wix.com/studio/community/partners/aethex" }, ]; export default partners;