diff --git a/src/components/TheSidebar.vue b/src/components/TheSidebar.vue index c746cd6..b291ab7 100644 --- a/src/components/TheSidebar.vue +++ b/src/components/TheSidebar.vue @@ -17,15 +17,9 @@ export default { data() { return { pageSettings: [ - { - id: "home", - path: "#/", - active: true, - icon: "icon-home", - }, { id: "calendar", - path: "#/calendar", + path: "#/", active: false, icon: "icon-calendar-2", }, diff --git a/src/pages/home/TheHome.vue b/src/pages/home/TheHome.vue deleted file mode 100644 index 19dca85..0000000 --- a/src/pages/home/TheHome.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/src/router.js b/src/router.js index 4465bdc..d2926a7 100644 --- a/src/router.js +++ b/src/router.js @@ -1,5 +1,4 @@ import { createRouter, createWebHashHistory } from "vue-router"; -import TheHome from "@/pages/home/TheHome.vue"; import TheCalendar from "@/pages/calendar/TheCalendar"; import TheUser from "@/pages/clients/TheClients"; import TheSettings from "@/pages/settings/TheSettings"; @@ -7,8 +6,7 @@ import TheSettings from "@/pages/settings/TheSettings"; export default createRouter({ history: createWebHashHistory(), routes: [ - { path: "/", component: TheHome }, - { path: "/calendar", component: TheCalendar }, + { path: "/", component: TheCalendar }, { path: "/clients", component: TheUser }, { path: "/settings", component: TheSettings }, ],