summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--www/astro.config.mjs19
-rw-r--r--www/src/content/docs/guides/example.md11
-rw-r--r--www/src/content/docs/reference/example.md11
3 files changed, 7 insertions, 34 deletions
diff --git a/www/astro.config.mjs b/www/astro.config.mjs
index ae0729f13..ebf7905ef 100644
--- a/www/astro.config.mjs
+++ b/www/astro.config.mjs
@@ -35,17 +35,13 @@ export default defineConfig({
replacesTitle: true,
},
sidebar: [
- {
- label: "Guides",
- items: [
- // Each item here is one entry in the navigation menu.
- { label: "Example Guide", slug: "guides/example" },
- ],
- },
- {
- label: "Reference",
- autogenerate: { directory: "reference" },
- },
+ "docs",
+ "docs/cli",
+ "docs/config",
+ "docs/models",
+ "docs/themes",
+ "docs/shortcuts",
+ "docs/mcp-servers",
],
components: {
Hero: "./src/components/Hero.astro",
@@ -55,7 +51,6 @@ export default defineConfig({
headerLinks: [
{ name: "Home", url: "/" },
{ name: "Docs", url: "/docs/" },
- { name: "Blog", url: "/blog/" },
],
})],
}),
diff --git a/www/src/content/docs/guides/example.md b/www/src/content/docs/guides/example.md
deleted file mode 100644
index ebd0f3bc7..000000000
--- a/www/src/content/docs/guides/example.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-title: Example Guide
-description: A guide in my new Starlight docs site.
----
-
-Guides lead a user through a specific task they want to accomplish, often with a sequence of steps.
-Writing a good guide requires thinking about what your users are trying to do.
-
-## Further reading
-
-- Read [about how-to guides](https://diataxis.fr/how-to-guides/) in the Diátaxis framework
diff --git a/www/src/content/docs/reference/example.md b/www/src/content/docs/reference/example.md
deleted file mode 100644
index 0224f096c..000000000
--- a/www/src/content/docs/reference/example.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-title: Example Reference
-description: A reference page in my new Starlight docs site.
----
-
-Reference pages are ideal for outlining how things work in terse and clear terms.
-Less concerned with telling a story or addressing a specific use case, they should give a comprehensive outline of what you're documenting.
-
-## Further reading
-
-- Read [about reference](https://diataxis.fr/reference/) in the Diátaxis framework