This commit is contained in:
Mrrp 2025-01-04 13:03:03 -08:00
parent ba72f0bf22
commit 5a911771d0
8 changed files with 114 additions and 100 deletions

View file

@ -52,13 +52,6 @@ function generatePageCategory(pagesInfo: Record<string, any>): PageCategory {
}
const postDirectories: pages.PageLocation[] = [
{
title: "Blog",
description: "General blog posts",
tags: ["blog"],
map: "blog",
root: "content/blog"
},
{
title: "Site",
description: "Articles to test site functionality",
@ -72,6 +65,13 @@ const postDirectories: pages.PageLocation[] = [
tags: ["collection"],
map: "collections",
root: "content/collections"
},
{
title: "Guides",
description: "Guides and tutorials",
tags: ["guide"],
map: "guides",
root: "content/guides"
}
]