basic structure

This commit is contained in:
2025-08-04 23:11:16 +02:00
parent 794f63358e
commit 41adec1bf7
34 changed files with 717 additions and 569 deletions

View File

@@ -10,8 +10,8 @@ import {themes as prismThemes} from 'prism-react-renderer';
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'My Site',
tagline: 'Dinosaurs are cool',
title: 'Homelabbing',
tagline: 'Your guide for a perfect homelab',
favicon: 'img/favicon.ico',
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
@@ -89,14 +89,26 @@ const config = {
items: [
{
type: 'docSidebar',
sidebarId: 'tutorialSidebar',
sidebarId: 'software',
position: 'left',
label: 'Tutorial',
label: 'Software',
},
{to: '/blog', label: 'Blog', position: 'left'},
{
href: 'https://github.com/facebook/docusaurus',
label: 'GitHub',
type: 'docSidebar',
sidebarId: 'hardware',
position: 'left',
label: 'Hardware',
},
{
type: 'docSidebar',
sidebarId: 'knowhow',
position: 'left',
label: 'Know-How',
},
{to: '/blog', label: 'Blog', position: 'right'},
{
href: 'https://gitea.js-devop.de/jschaufuss/Homelabbing',
label: 'Gitea',
position: 'right',
},
],
@@ -108,8 +120,16 @@ const config = {
title: 'Docs',
items: [
{
label: 'Tutorial',
to: '/docs/intro',
label: 'Software',
to: '/docs/software/',
},
{
label: 'Hardware',
to: '/docs/hardware/',
},
{
label: 'Know-How',
to: '/docs/knowhow/',
},
],
},
@@ -138,8 +158,8 @@ const config = {
to: '/blog',
},
{
label: 'GitHub',
href: 'https://github.com/facebook/docusaurus',
label: 'Gitea',
href: 'https://gitea.js-devop.de/jschaufuss/Homelabbing',
},
],
},