From 430475913d30ef7a30cb3092f6ef09c0c998a9b6 Mon Sep 17 00:00:00 2001 From: AmineAfia Date: Sun, 5 Jan 2025 23:20:33 +0000 Subject: [PATCH] Add side nav link to ai docs in insight (#5885) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- title: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" --- If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --- ## PR-Codex overview This PR focuses on adding a new entry to the sidebar in the `sidebar.tsx` file of the `insight` section, specifically introducing a link for "Agents & LLMs". ### Detailed summary - Added a new sidebar entry: - `name`: "Agents & LLMs" - `href`: `${insightSlug}/agents-and-llms` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- apps/portal/src/app/insight/sidebar.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/portal/src/app/insight/sidebar.tsx b/apps/portal/src/app/insight/sidebar.tsx index c3f6a9a76fd..40027e80201 100644 --- a/apps/portal/src/app/insight/sidebar.tsx +++ b/apps/portal/src/app/insight/sidebar.tsx @@ -25,6 +25,10 @@ export const sidebar: SideBar = { name: "Use cases", href: `${insightSlug}/use-cases`, }, + { + name: "Agents & LLMs", + href: `${insightSlug}/agents-and-llms`, + }, { name: "API Reference", href: "https://insight-api.thirdweb.com/reference",