diff --git a/src/router/router.js b/src/router/router.js index 0380d96..f3345e2 100644 --- a/src/router/router.js +++ b/src/router/router.js @@ -1,5 +1,7 @@ import { createWebHistory, createRouter } from "vue-router"; import Home from "../views/Home.vue"; +import Notifications from "../views/Notifications.vue"; +import Reunions from "../views/Reunions.vue"; import Inspirations from "../views/Inspirations.vue"; import { useApiStore } from "../stores/api"; import { usePageStore } from "../stores/page"; @@ -10,6 +12,14 @@ const routes = [ path: "/", component: Home, }, + { + path: "/notifications", + component: Notifications, + }, + { + path: "/reunions", + component: Reunions, + }, { path: "/inspirations", component: Inspirations,