From b08d347727fcd29f1ae47c4758ca991defa3f90b Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Mon, 1 Jun 2026 16:34:07 -0600 Subject: [PATCH] adding a profile page --- src/layouts/DashboardLayout.vue | 12 +- src/router/index.js | 1 + src/views/ProfileView.vue | 240 ++++++++++++++++++++++++++++++++ 3 files changed, 249 insertions(+), 4 deletions(-) create mode 100644 src/views/ProfileView.vue 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 @@ + + +