Add Wix partner profile CTA in hero

cgen-7fc2edcd4a714851ab0fa40277449388
This commit is contained in:
Builder.io 2025-10-19 05:57:14 +00:00
parent e7926bee47
commit 445f9f66de
2 changed files with 4 additions and 1 deletions

View file

@ -31,6 +31,9 @@ export default function WixHero() {
<Button asChild variant="ghost">
<Link to="/wix/faq">FAQ</Link>
</Button>
<Button asChild variant="outline">
<a href="https://www.wix.com/studio/community/partners/aethex" target="_blank" rel="noreferrer">Wix Partner Profile</a>
</Button>
</div>
</div>
</CardContent>

View file

@ -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;