This commit is contained in:
2026-02-10 11:57:42 +01:00
parent 7ba96f6a03
commit 4041a4ac4a
7 changed files with 86 additions and 7 deletions

View File

@ -2,26 +2,34 @@ import { defineConfig } from "vitepress"
export default defineConfig({
title: "CMS Docs",
description: "Engineering documentation for the CMS platform",
description: "Documentation hub for product, engineering, API, and admin/user guidance.",
cleanUrls: true,
lastUpdated: true,
themeConfig: {
nav: [
{ text: "Home", link: "/" },
{ text: "Getting Started", link: "/getting-started" },
{ text: "Architecture", link: "/architecture" },
{ text: "Workflow", link: "/workflow" },
{ text: "Product / Engineering", link: "/product-engineering/" },
{ text: "Admin / User Guides", link: "/admin-user-guides/" },
{ text: "Public API", link: "/public-api/" },
],
sidebar: [
{
text: "Guide",
text: "Product / Engineering",
items: [
{ text: "Overview", link: "/" },
{ text: "Section Overview", link: "/product-engineering/" },
{ text: "Getting Started", link: "/getting-started" },
{ text: "Architecture", link: "/architecture" },
{ text: "Workflow", link: "/workflow" },
],
},
{
text: "Admin / User Guides",
items: [{ text: "Section Overview", link: "/admin-user-guides/" }],
},
{
text: "Public API",
items: [{ text: "Section Overview", link: "/public-api/" }],
},
],
socialLinks: [{ icon: "github", link: "https://example.com/replace-with-repo" }],
footer: {