feat(config): add navigation tabs for Guides and Solutions

This commit is contained in:
Prad Nukala
2026-08-19 22:08:28 -04:00
parent 4065de560e
commit 3224db8bd4
+12
View File
@@ -7,4 +7,16 @@ export default defineConfig({
site: "https://prdlk.github.io", site: "https://prdlk.github.io",
base: "/leetcode", base: "/leetcode",
}, },
navigation: {
tabs: [
{
label: "Guides",
path: "/guides",
},
{
title: "Solutions",
href: "/solutions",
},
],
},
}); });