initial commit

This commit is contained in:
julius zeidler 2022-08-08 17:30:45 +02:00
commit 3bf46f4b79
11 changed files with 1910 additions and 0 deletions

37
docs/.vuepress/config.js Normal file
View file

@ -0,0 +1,37 @@
const { defaultTheme } = require('@vuepress/theme-default')
const { activeHeaderLinksPlugin } = require('@vuepress/plugin-active-header-links')
const { backToTopPlugin } = require('@vuepress/plugin-back-to-top')
const { socialSharePlugin } = require(`vuepress-plugin-social-share`)
module.exports = {
lang: 'de-DE',
title: 'Draussenfunker.de | QRV im Grünen',
description: 'Wir sind eine Gruppe von Funkamateuren die sich mit dem Thema Funken im Freien beschäftigen.',
plugins: [
activeHeaderLinksPlugin({
// options
}),
backToTopPlugin(),
socialSharePlugin(),
],
theme: defaultTheme({
navbar: [
// NavbarItem
{
text: 'Start',
link: '/',
},
// NavbarGroup
{
text: 'Wissenswertes',
children: ['/wissenswertes/amateurfunk', '/wissenswertes/ausbreitung'],
},
{
text: 'Blog',
link: '/blog',
}
],
}),
}