diff --git a/src/locales/en.json b/src/locales/en.json index 2413059..c6c2aad 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -123,7 +123,8 @@ "avatar": "My Avatar", "transactions": "Transactions", "settings": "Settings", - "logout": "Logout" + "logout": "Logout", + "friends": "Friends" }, "more": { "title": "More", @@ -179,6 +180,9 @@ "title": "Modify User", "text": "Modify user badges" }, + "home": { + "globalWall": "Global Wall" + }, "badges": { "admin": "Admin", "bot": "Bot", diff --git a/src/router/index.js b/src/router/index.js index 2974903..57b8764 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -76,6 +76,10 @@ const routes = [ name: 'Stats', component: route('Stats') }, + { path: '/admin', component: route('Admin'), children: [ + { path: 'dashboard', component: route('AdminDashboard') }, + { path: 'item', component: route('AdminCreateItem') }, + ] }, { path: '*', name: '404', diff --git a/src/views/Admin.vue b/src/views/Admin.vue new file mode 100644 index 0000000..12e9706 --- /dev/null +++ b/src/views/Admin.vue @@ -0,0 +1,20 @@ + \ No newline at end of file diff --git a/src/views/AdminCreateItem.vue b/src/views/AdminCreateItem.vue new file mode 100644 index 0000000..d806867 --- /dev/null +++ b/src/views/AdminCreateItem.vue @@ -0,0 +1,112 @@ + + \ No newline at end of file diff --git a/src/views/AdminDashboard.vue b/src/views/AdminDashboard.vue new file mode 100644 index 0000000..4fe2a6b --- /dev/null +++ b/src/views/AdminDashboard.vue @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/src/views/Home.vue b/src/views/Home.vue index 1958ea2..3db1a0e 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,13 +1,17 @@