feat: add management pages (#12)

This commit is contained in:
Manuel
2024-01-02 16:49:02 +01:00
committed by GitHub
parent 782897527f
commit 2809e01b03
3 changed files with 176 additions and 0 deletions

View File

@@ -58,4 +58,41 @@ export default {
nothingFound: "Nothing found",
},
},
management: {
metaTitle: "Management",
title: {
morning: "Good morning, {username}",
afternoon: "Good afternoon, {username}",
evening: "Good evening, {username}",
},
navbar: {
items: {
home: "Home",
boards: "Boards",
users: {
label: "Users",
items: {
manage: "Manage",
invites: "Invites",
},
},
tools: {
label: "Tools",
items: {
docker: "Docker",
},
},
help: {
label: "Help",
items: {
documentation: "Documentation",
submitIssue: "Submit an issue",
discord: "Community Discord",
sourceCode: "Source Code",
},
},
about: "About",
},
},
},
} as const;