diff --git a/astro.config.mjs b/astro.config.mjs index 4272374..8e8b3d8 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -13,21 +13,38 @@ export default defineConfig({ components: { Footer: "./src/components/Footer.astro", }, - customCss: [ - "./src/styles/custom.css", - ], + customCss: ["./src/styles/custom.css"], sidebar: [ { - label: "Guides", + label: "ISPmail for Debian 12", items: [ // Each item here is one entry in the navigation menu. - { label: "Start Here", slug: "ispmail-bookworm" }, + { + label: "Start Here", + slug: "ispmail-bookworm", + }, + { + label: "Whats' new", + slug: "ispmail-bookworm/whats-new", + }, + { + label: "Migrating your old server", + slug: "ispmail-bookworm/migrating-from-a-bullseye-to-a-bookworm-server", + }, + { + label: "The big picture", + slug: "ispmail-bookworm/big-picture", + }, + { + label: "Types of email domains", + slug: "ispmail-bookworm/types-of-email-domains", + }, ], }, - { - label: "Reference", - autogenerate: { directory: "reference" }, - }, + // { + // label: "Reference", + // autogenerate: { directory: "reference" }, + // }, ], logo: { light: "./src/assets/logo.svg", diff --git a/src/components/Footer.astro b/src/components/Footer.astro index afa18d2..f2b1f60 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -6,7 +6,7 @@ import Default from "@astrojs/starlight/components/Footer.astro";