🚧 Work in progress

This commit is contained in:
Freeze455
2021-08-17 10:20:28 +02:00
parent 19a6327297
commit 2cd7d0f3e7
6 changed files with 146 additions and 47 deletions

13
src/utils/Navigation.ts Normal file
View File

@@ -0,0 +1,13 @@
import { NavbarLink } from '../types'
import { github, twitter } from './Icons'
export const links: NavbarLink[] = [
{ label: 'Home', path: '/', local: true },
{ label: 'Documentation', path: '/documentation', local: true },
{ label: 'Github', path: '/', local: false }
]
export const socials = [
twitter,
github,
]