Add basic Guider project and remove Nuxt content

This commit is contained in:
mrjvs
2024-03-30 20:22:43 +01:00
parent e10040dc40
commit c06bedc93c
18 changed files with 1753 additions and 7291 deletions

12
theme.config.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { defineTheme, directory, link } from '@neato/guider/theme';
export default defineTheme({
directories: [
directory("main", { // ID of your directory (unique per site), used for referencing in your page files
sidebar: [
// Creates a link in your sidebar, add more below it
link("Home", "/")
]
})
],
});