diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/navbar/nav.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/navbar/nav.rs b/src/components/navbar/nav.rs index 0cdc029..dd215a0 100644 --- a/src/components/navbar/nav.rs +++ b/src/components/navbar/nav.rs @@ -42,6 +42,14 @@ pub fn nav() -> Html { label: String::from("Manage"), to: Route::ManageMenu, }, + Link { + label: String::from("Settings"), + to: Route::Settings, + }, + Link { + label: String::from("About"), + to: Route::About, + }, ]); let manage_links = Vec::from([ |