Remove StarlightLayout and update sidebar configuration

Deleted StarlightLayout.astro file and removed its references in various markdown files. Also, extended the sidebar configuration in the astro.config.mjs to include translations and added menu items under the Tools & Equipment section.
This commit is contained in:
Emil Gulamov 2024-03-21 23:57:00 +04:00
parent d69078b745
commit 522eb397f0
13 changed files with 13 additions and 25 deletions

View file

@ -30,14 +30,26 @@ export default defineConfig({
ja: { label: "日本語", lang: "ja" }, ja: { label: "日本語", lang: "ja" },
"zh-cn": { label: "简体中文", lang: "zh-CN" }, "zh-cn": { label: "简体中文", lang: "zh-CN" },
}, },
// https://starlight.astro.build/guides/sidebar/
sidebar: [ sidebar: [
{ {
label: "Quick Start Guides", label: "Quick Start Guides",
translations: {
de: "Schnellstartanleitungen",
es: "Guías de Inicio Rápido",
fa: "راهنمای شروع سریع",
fr: "Guides de Démarrage Rapide",
ja: "クイックスタートガイド",
"zh-cn": "快速入门指南",
},
autogenerate: { directory: "guides" }, autogenerate: { directory: "guides" },
}, },
{ {
label: "Tools & Equipment", label: "Tools & Equipment",
autogenerate: { directory: "tools" }, items: [
{ label: "Tool Guides", link: "tools/tool-guides/" },
{ label: "Equipment Care", link: "tools/equipment-care/" },
],
}, },
{ {
label: "Construction Services", label: "Construction Services",

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Technical Specifications title: Technical Specifications
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Custom Solutions for Complex Projects title: Custom Solutions for Complex Projects
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Project Planning and Management title: Project Planning and Management
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Safety Protocols and Procedures title: Safety Protocols and Procedures
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Comprehensive Service Overview title: Comprehensive Service Overview
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: First Project Checklist title: First Project Checklist
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Getting Started title: Getting Started
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Introduction to ScrewFast Services title: Introduction to ScrewFast Services
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Equipment Care & Maintenance title: Equipment Care & Maintenance
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../../layouts/StarlightLayout.astro
title: Tool Guides title: Tool Guides
description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services. description: Explore ScrewFast's comprehensive documentation for an in-depth look at our premium tools and construction services.
sidebar: sidebar:

View file

@ -1,5 +1,4 @@
--- ---
layout: ../../../layouts/StarlightLayout.astro
title: ScrewFast Docs title: ScrewFast Docs
head: head:
- tag: title - tag: title

View file

@ -1,13 +0,0 @@
---
// Importing View Transitions component
import { ViewTransitions } from "astro:transitions";
---
<html lang="en">
<head>
<ViewTransitions />
</head>
<body>
<slot />
</body>
</html>