diff --git a/client/src/components/CircleSidebar.vue b/client/src/components/CircleSidebar.vue deleted file mode 100644 index 0dc94b35..00000000 --- a/client/src/components/CircleSidebar.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - - - diff --git a/client/src/components/LearningPath.vue b/client/src/components/LearningPath.vue deleted file mode 100644 index f7ed978a..00000000 --- a/client/src/components/LearningPath.vue +++ /dev/null @@ -1,16 +0,0 @@ - - - - - diff --git a/client/src/components/LearningSequence.vue b/client/src/components/LearningSequence.vue deleted file mode 100644 index e858121d..00000000 --- a/client/src/components/LearningSequence.vue +++ /dev/null @@ -1,29 +0,0 @@ - - - - - diff --git a/client/src/components/MainNavigationBar.vue b/client/src/components/MainNavigationBar.vue index 760c41c4..954d7060 100644 --- a/client/src/components/MainNavigationBar.vue +++ b/client/src/components/MainNavigationBar.vue @@ -1,18 +1,18 @@ - - + + diff --git a/client/src/components/VBVNavigationBar.vue b/client/src/components/VBVNavigationBar.vue deleted file mode 100644 index f23cdf16..00000000 --- a/client/src/components/VBVNavigationBar.vue +++ /dev/null @@ -1,18 +0,0 @@ - - - - - diff --git a/client/src/router/index.ts b/client/src/router/index.ts index 5d5356d7..3b072d4c 100644 --- a/client/src/router/index.ts +++ b/client/src/router/index.ts @@ -27,8 +27,9 @@ const router = createRouter({ } }, { - path: '/analyse', - component: () => import('../views/CircleAnalyseExampleView.vue'), + path: '/circle/:circleSlug', + component: () => import('../views/Circle.vue'), + props: true }, { path: '/profile', @@ -38,10 +39,6 @@ const router = createRouter({ path: '/learningpath/:learningPathId', component: () => import('../views/LearningPathOverview.vue'), }, - { - path: '/learningpath/:learningPathId/circle/:circleId', - component: () => import('../views/CircleView.vue'), - } ] }) diff --git a/client/src/views/CircleAnalyseExampleView.vue b/client/src/views/Circle.vue similarity index 83% rename from client/src/views/CircleAnalyseExampleView.vue rename to client/src/views/Circle.vue index a1996aeb..c97d514d 100644 --- a/client/src/views/CircleAnalyseExampleView.vue +++ b/client/src/views/Circle.vue @@ -1,7 +1,10 @@