From 3224db8bd4178811a4eee04900f8212bd55eed04 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Wed, 19 Aug 2026 22:08:28 -0400 Subject: [PATCH] feat(config): add navigation tabs for Guides and Solutions --- blume.config.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/blume.config.ts b/blume.config.ts index 03581ea..b38ac3d 100644 --- a/blume.config.ts +++ b/blume.config.ts @@ -7,4 +7,16 @@ export default defineConfig({ site: "https://prdlk.github.io", base: "/leetcode", }, + navigation: { + tabs: [ + { + label: "Guides", + path: "/guides", + }, + { + title: "Solutions", + href: "/solutions", + }, + ], + }, });