diff --git a/src/router/index.ts b/src/router/index.ts index 817a2e9914271033617fe7f5d088d32d33ec153a..bb108c321747b1b696a2d530d0fb618fd3d020d8 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -16,16 +16,16 @@ const routes = [ component: () => import('../views/HomeView.vue'), meta: { requiresAuth: true }, }, - { - path: '/:pathMatch(.*)*', - name: 'not-found', - component: () => import('@/views/NotFoundView.vue'), - }, { path: '/news', name: 'news', component: () => import('@/views/NewsView.vue'), }, + { + path: 'leaderboard', + name: 'leaderboard', + component: () => import('@/views/LeaderboardView.vue'), + }, { path: 'test', name: 'test', @@ -36,6 +36,16 @@ const routes = [ name: 'roadmap', component: () => import('@/views/SavingGoalView/RoadmapView.vue'), }, + { + path: 'feedback', + name: 'feedback', + component: () => import('@/views/FeedbackView.vue'), + }, + { + path: 'shop', + name: 'shop', + component: () => import('@/views/ShopView.vue'), + }, { path: 'admin', name: 'admin', @@ -47,6 +57,11 @@ const routes = [ name: 'unauthorized', component: () => import('@/views/UnauthorizedView.vue'), }, + { + path: '/:pathMatch(.*)*', + name: 'not-found', + component: () => import('@/views/NotFoundView.vue'), + }, ] }, { diff --git a/src/views/FeedbackView.vue b/src/views/FeedbackView.vue new file mode 100644 index 0000000000000000000000000000000000000000..9095328987e0c5479f039dd59d667f0533d4cb71 --- /dev/null +++ b/src/views/FeedbackView.vue @@ -0,0 +1,3 @@ +<template> + Hallo +</template> \ No newline at end of file diff --git a/src/views/ShopView.vue b/src/views/ShopView.vue new file mode 100644 index 0000000000000000000000000000000000000000..9095328987e0c5479f039dd59d667f0533d4cb71 --- /dev/null +++ b/src/views/ShopView.vue @@ -0,0 +1,3 @@ +<template> + Hallo +</template> \ No newline at end of file