diff --git a/src/components/SidebarComponents/SideBar.vue b/src/components/SidebarComponents/SideBar.vue
index 37fef6c..9459e65 100644
--- a/src/components/SidebarComponents/SideBar.vue
+++ b/src/components/SidebarComponents/SideBar.vue
@@ -25,11 +25,11 @@ export default {
name: 'SideBar',
setup() {
const routes = [
- { path: '/Dashboard', label: 'Dashboard' },
+ { path: '/', label: 'Dashboard' },
{ path: '/Lists', label: 'Lists' },
{ path: '/Learn', label: 'Learn' },
{ path: '/Type', label: 'Type' },
- { path: '/', label: 'About Me' },
+ { path: '/About-me', label: 'About Me' },
{ path: '/Settings', label: 'Settings' },
{ path: '/Login', label: 'Login' },
];
diff --git a/src/router/index.js b/src/router/index.js
index c23abd9..1026f7e 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -10,7 +10,7 @@ import SignUp from '../views/SignUp.vue'
const routes = [
{
- path: '/dashboard',
+ path: '/',
name: 'dashboard',
component: DashboardWorld
},
@@ -25,7 +25,7 @@ const routes = [
component: SettingsWorld
},
{
- path: '/',
+ path: '/About-me',
name: 'About Me',
component: AboutMe
},
diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue
index 5a01377..734f974 100644
--- a/src/views/Dashboard.vue
+++ b/src/views/Dashboard.vue
@@ -5,16 +5,16 @@
-
+
+
Insert Daily Calendar Here
-