From e0fd42800ae4e37a22bbe376fea29ae7bc292e29 Mon Sep 17 00:00:00 2001 From: Steve Simkins Date: Sun, 31 Aug 2025 19:49:02 -0400 Subject: [PATCH 1/2] chore: added links to sidebar and github icon --- src/app/layout.config.tsx | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/app/layout.config.tsx b/src/app/layout.config.tsx index 57c1c9c2..b447786e 100644 --- a/src/app/layout.config.tsx +++ b/src/app/layout.config.tsx @@ -1,5 +1,10 @@ import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"; -import { GithubIcon, HomeIcon } from "lucide-react"; +import { + GithubIcon, + GlobeIcon, + HomeIcon, + MessagesSquareIcon, +} from "lucide-react"; /** * Shared layout configurations @@ -86,6 +91,7 @@ export const baseOptions: BaseLayoutProps = { ), }, + githubUrl: "https://github.com/OpenZeppelin", // see https://fumadocs.dev/docs/ui/navigation/links links: [ { @@ -95,11 +101,14 @@ export const baseOptions: BaseLayoutProps = { secondary: false, }, { - text: "GitHub", - url: "https://github.com/OpenZeppelin", - icon: , - // secondary items will be displayed differently on navbar - secondary: false, + text: "Forum", + url: "https://forum.openzeppelin.com", + icon: , + }, + { + text: "Website", + url: "https://openzeppelin.com", + icon: , }, ], }; From f1f3acdcd51234a94164d39f2ce418c5472cbbd9 Mon Sep 17 00:00:00 2001 From: Steve Simkins Date: Mon, 1 Sep 2025 09:21:08 -0400 Subject: [PATCH 2/2] chore: removed unused icon --- src/app/layout.config.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app/layout.config.tsx b/src/app/layout.config.tsx index b447786e..a9c2b105 100644 --- a/src/app/layout.config.tsx +++ b/src/app/layout.config.tsx @@ -1,10 +1,5 @@ import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared"; -import { - GithubIcon, - GlobeIcon, - HomeIcon, - MessagesSquareIcon, -} from "lucide-react"; +import { GlobeIcon, HomeIcon, MessagesSquareIcon } from "lucide-react"; /** * Shared layout configurations