🚧 Setup documentation

This commit is contained in:
Freeze455
2021-08-17 12:47:19 +02:00
parent b178ea1ff2
commit f7eca7aeca
6 changed files with 63 additions and 47 deletions

View File

@@ -54,7 +54,8 @@ import {
@Middleware({ pattern: '(?<count>\\\\d+)-args')}
export default class FooMiddleware implements BaseMiddleware {
public async run(context: MiddlewareContext): Promise<void> {
// Your code here
// Your code here
return true
}
}
`

View File

@@ -4,7 +4,7 @@ import { CalendarIcon, ChartBarIcon, FolderIcon, HomeIcon, InboxIcon, UsersIcon
export const links: NavbarLink[] = [
{ label: 'Home', path: '/', local: true },
{ label: 'Documentation', path: '/documentation', local: true },
{ label: 'Documentation', path: '/documentation/getting-started', local: true },
{ label: 'Discussion', path: '/https://github.com/DiscordFactory/Core/discussions', local: false }
]
@@ -18,7 +18,7 @@ export const documentation = [
label: 'Basic',
isMenu: true,
child: [
{ label: 'Getting starting', href: '/documentation/getting-starting', isMenu: true },
{ label: 'Getting starting', href: '/documentation/getting-started', isMenu: true },
]
},
]