add client brief page

This commit is contained in:
isUnknown 2024-09-26 19:14:20 +02:00
parent 83cf6beea7
commit 769639b241
12 changed files with 97 additions and 53 deletions

View file

@ -3,6 +3,7 @@ import Notifications from "../views/Notifications.vue";
import Reunions from "../views/Reunions.vue";
import Inspirations from "../views/Inspirations.vue";
import Project from "../views/Project.vue";
import ClientBrief from "../views/ClientBrief.vue";
const routes = [
{
@ -25,6 +26,10 @@ const routes = [
path: "/projects/:id",
component: Project,
},
{
path: "/projects/:id/client-brief",
component: ClientBrief,
},
];
export default routes;