From 7c05d998bcd50c226050326893fa9ccfc10f6700 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 20 Aug 2026 13:47:47 -0400 Subject: [PATCH] docs(config): update site description and navigation label to "Solutions" for LeetCode docs --- blume.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blume.config.ts b/blume.config.ts index 09080ad..1a2368d 100644 --- a/blume.config.ts +++ b/blume.config.ts @@ -2,7 +2,7 @@ import { defineConfig } from "blume"; export default defineConfig({ title: "Leetcode", - description: "Documentation powered by Blume.", + description: "Documentation for LeetCode solutions", deployment: { site: "https://prdlk.github.io", base: "/leetcode", @@ -10,8 +10,8 @@ export default defineConfig({ navigation: { tabs: [ { - label: "Guides", - path: "/guides", + label: "Solutions", + path: "/solutions", }, ], },