@@ -31,6 +31,17 @@ if (process.env.PLAUSIBLE_DOMAIN) {
3131 ] ;
3232}
3333
34+ const learn = {
35+ text : "Learn" ,
36+ items : [
37+ { text : "What is BotKit?" , link : "/intro.md" } ,
38+ { text : "Getting started" , link : "/start.md" } ,
39+ { text : "Building an RSS bot" , link : "/tutorial/rss-bot.md" } ,
40+ { text : "Recipes" , link : "/recipes.md" } ,
41+ { text : "Examples" , link : "/examples.md" } ,
42+ ] ,
43+ } ;
44+
3445const concepts = {
3546 text : "Concepts" ,
3647 items : [
@@ -83,18 +94,16 @@ export default defineConfig({
8394 logo : "/logo.svg" ,
8495 nav : [
8596 { text : "Home" , link : "/" } ,
86- { text : "About" , link : "/intro.md" } ,
87- { text : "Start" , link : "/start.md" } ,
97+ learn ,
8898 concepts ,
8999 deploy ,
90100 references ,
91- { text : "Recipes" , link : "/recipes.md" } ,
92- { text : "Examples" , link : "/examples.md" } ,
93101 ] ,
94102
95103 sidebar : [
96104 { text : "What is BotKit?" , link : "/intro.md" } ,
97105 { text : "Getting started" , link : "/start.md" } ,
106+ { text : "Building an RSS bot" , link : "/tutorial/rss-bot.md" } ,
98107 concepts ,
99108 deploy ,
100109 references ,
0 commit comments