🚧 Work in progress

This commit is contained in:
Freeze455
2021-08-17 11:18:28 +02:00
parent 404a5df44e
commit b178ea1ff2
7 changed files with 211 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
import { NavbarLink } from '../types'
import { github, twitter } from './Icons'
import { CalendarIcon, ChartBarIcon, FolderIcon, HomeIcon, InboxIcon, UsersIcon } from '@heroicons/vue/outline'
export const links: NavbarLink[] = [
{ label: 'Home', path: '/', local: true },
@@ -10,4 +11,14 @@ export const links: NavbarLink[] = [
export const socials = [
twitter,
github,
]
]
export const documentation = [
{
label: 'Basic',
isMenu: true,
child: [
{ label: 'Getting starting', href: '/documentation/getting-starting', isMenu: true },
]
},
]