From 62d5c2a91f5f97b2483bbfb94b31190ba382de54 Mon Sep 17 00:00:00 2001 From: Saqib Ansari Date: Sat, 28 Jun 2025 10:55:13 +0530 Subject: [PATCH] feat: initialize dashboard boilerplate --- .../src/components/Layouts/AppSidebar.vue | 8 + frontend/src/pages/Dashboard.vue | 312 +++++++++++++++++- frontend/src/router.js | 5 + 3 files changed, 316 insertions(+), 9 deletions(-) diff --git a/frontend/src/components/Layouts/AppSidebar.vue b/frontend/src/components/Layouts/AppSidebar.vue index e78fa0dc..c223e8af 100644 --- a/frontend/src/components/Layouts/AppSidebar.vue +++ b/frontend/src/components/Layouts/AppSidebar.vue @@ -8,6 +8,13 @@
+ - - - +
+ + + + + +
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
- diff --git a/frontend/src/router.js b/frontend/src/router.js index 93e4743f..62385030 100644 --- a/frontend/src/router.js +++ b/frontend/src/router.js @@ -13,6 +13,11 @@ const routes = [ name: 'Notifications', component: () => import('@/pages/MobileNotification.vue'), }, + { + path: '/dashboard', + name: 'Dashboard', + component: () => import('@/pages/Dashboard.vue'), + }, { alias: '/leads', path: '/leads/view/:viewType?',