diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-27 11:56:56 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-27 11:56:56 +0100 |
commit | f3a7e39a5a261f617c7c9bcece661656dcc13c15 (patch) | |
tree | 58ad0945ca9787c633c2d056a8cd52ec6b0f1701 /apps/website/config.ts | |
parent | a8b3db9c0344fb82796bad7fc1c3b1b7f20c3fe4 (diff) | |
download | Nexus-f3a7e39a5a261f617c7c9bcece661656dcc13c15.tar.gz Nexus-f3a7e39a5a261f617c7c9bcece661656dcc13c15.tar.bz2 Nexus-f3a7e39a5a261f617c7c9bcece661656dcc13c15.zip |
Update navbar + some tweaks
Diffstat (limited to 'apps/website/config.ts')
-rw-r--r-- | apps/website/config.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/website/config.ts b/apps/website/config.ts index 0d45d76..f53cff0 100644 --- a/apps/website/config.ts +++ b/apps/website/config.ts @@ -21,12 +21,24 @@ export const configConst = { path: '/', }, { + text: 'Mods', + path: '/mods', + }, + { text: 'Projects', dropdown: getProjects().map((project) => { (project as any).path = `/projects/${project.name.toLowerCase()}`; return project; }) as unknown as NavbarDropdown[], }, + { + text: 'About Us', + path: '/about', + }, + { + text: 'Contact Us', + path: '/contact', + }, ], }, footer: [ |