From cf6111506473768d8fa582c4d7cae5928c7cce3e Mon Sep 17 00:00:00 2001 From: arcoraven Date: Wed, 23 Oct 2024 23:31:43 +0000 Subject: [PATCH] chore: add knowledge base link (#5147) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## PR-Codex overview This PR updates the `supportLinks` array in the `Header.tsx` file to improve the naming of existing links and to add a new link for the Knowledge Base. ### Detailed summary - Changed the name of the first link from `"Support Site"` to `"Get thirdweb support"`. - Added a new link for the Knowledge Base with the name `"Knowledge Base"` and the URL `https://support.thirdweb.com`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- apps/portal/src/app/Header.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/portal/src/app/Header.tsx b/apps/portal/src/app/Header.tsx index 3a0371502a4..90662e4ecf3 100644 --- a/apps/portal/src/app/Header.tsx +++ b/apps/portal/src/app/Header.tsx @@ -98,9 +98,13 @@ export const connectLinks = [ const supportLinks = [ { - name: "Support Site", + name: "Get thirdweb support", href: "https://thirdweb.com/support", }, + { + name: "Knowledge Base", + href: "https://support.thirdweb.com", + }, { name: "Contact Sales", href: "https://thirdweb.com/contact-us",