diff --git a/src/config/docs.json b/src/config/docs.json index c7c93b0..ad9d961 100644 --- a/src/config/docs.json +++ b/src/config/docs.json @@ -5,7 +5,7 @@ "header": true }, { - "text": "Installation", + "text": "Installation Guide", "link": "/docs/get-started/installation" }, { diff --git a/src/content/docs/get-started/installation.md b/src/content/docs/get-started/installation.md index ef88e4d..d9a6df6 100644 --- a/src/content/docs/get-started/installation.md +++ b/src/content/docs/get-started/installation.md @@ -1,5 +1,5 @@ --- -title: Installation +title: Installation Guide --- ## A header diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index e3eeaaf..8b53e08 100755 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -1,6 +1,5 @@ --- import config from "@/config/config.json"; -import theme from "@/config/theme.json"; import { plainify } from "@/lib/utils/textConverter"; import Footer from "@/components/Footer.astro"; import Header from "@/components/Header.astro"; diff --git a/src/layouts/DocSingle.astro b/src/layouts/DocSingle.astro index e27a9be..6853c86 100644 --- a/src/layouts/DocSingle.astro +++ b/src/layouts/DocSingle.astro @@ -11,15 +11,15 @@ const currentPage = new URL(Astro.request.url).pathname;
-
+
-
+
-
+

{ title }

@@ -28,8 +28,10 @@ const currentPage = new URL(Astro.request.url).pathname;
-
- +
diff --git a/src/layouts/components/DocBrowser.astro b/src/layouts/components/DocBrowser.astro index 1a82ce2..bcb7789 100644 --- a/src/layouts/components/DocBrowser.astro +++ b/src/layouts/components/DocBrowser.astro @@ -30,8 +30,8 @@ export interface doc_data { const { main }: { main: doc_data[] } = docs; --- -