diff --git a/frontend/src/components/AppSidebar.vue b/frontend/src/components/AppSidebar.vue
index 4e0d91f4..f09c4d35 100644
--- a/frontend/src/components/AppSidebar.vue
+++ b/frontend/src/components/AppSidebar.vue
@@ -27,6 +27,7 @@
import UserDropdown from './UserDropdown.vue'
import LeadsIcon from './Icons/LeadsIcon.vue'
import DealsIcon from './Icons/DealsIcon.vue'
+import ContactsIcon from './Icons/ContactsIcon.vue'
import InboxIcon from './Icons/InboxIcon.vue'
import DashboardIcon from './Icons/DashboardIcon.vue'
import NavLinks from './NavLinks.vue'
@@ -47,6 +48,11 @@ const navigations = [
icon: DealsIcon,
route: { name: 'Deals' },
},
+ {
+ name: 'Contacts',
+ icon: ContactsIcon,
+ route: { name: 'Contacts' },
+ },
{
name: 'Dashboard',
icon: DashboardIcon,
diff --git a/frontend/src/components/Icons/ContactsIcon.vue b/frontend/src/components/Icons/ContactsIcon.vue
new file mode 100644
index 00000000..e4a00900
--- /dev/null
+++ b/frontend/src/components/Icons/ContactsIcon.vue
@@ -0,0 +1,30 @@
+
+
+
diff --git a/frontend/src/pages/Contacts.vue b/frontend/src/pages/Contacts.vue
new file mode 100644
index 00000000..96ff0eff
--- /dev/null
+++ b/frontend/src/pages/Contacts.vue
@@ -0,0 +1,50 @@
+
+
+
+
+
diff --git a/frontend/src/router.js b/frontend/src/router.js
index 18933e4d..c1670d89 100644
--- a/frontend/src/router.js
+++ b/frontend/src/router.js
@@ -21,6 +21,11 @@ const routes = [
name: 'Inbox',
component: () => import('@/pages/Inbox.vue'),
},
+ {
+ path: '/contacts',
+ name: 'Contacts',
+ component: () => import('@/pages/Contacts.vue'),
+ },
{
path: '/dashboard',
name: 'Dashboard',