diff --git a/src/layouts/DashboardLayout.vue b/src/layouts/DashboardLayout.vue index 7fead48..b0e8464 100644 --- a/src/layouts/DashboardLayout.vue +++ b/src/layouts/DashboardLayout.vue @@ -65,13 +65,17 @@ const pageTitle = computed(() => route.meta.title ?? '')
- person Profile - + import('../views/IconsView.vue'), meta: { title: 'Icons' } }, { path: '/maps', component: () => import('../views/MapsView.vue'), meta: { title: 'Maps' } }, { path: '/notifications',component: () => import('../views/NotificationsView.vue'), meta: { title: 'Notifications' } }, + { path: '/profile', component: () => import('../views/ProfileView.vue'), meta: { title: 'Profile' } }, ], }) diff --git a/src/views/ProfileView.vue b/src/views/ProfileView.vue new file mode 100644 index 0000000..9072288 --- /dev/null +++ b/src/views/ProfileView.vue @@ -0,0 +1,240 @@ + + +