From f6c4c3e5086a64fc5b4478b5509220a86df372b6 Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Thu, 4 Dec 2025 22:24:12 -0500 Subject: [PATCH] Added documentation page --- ui/src/components/Navigation/Navbar.vue | 2 +- ui/src/components/application/ApplicationForm.vue | 2 +- ui/src/pages/Documentation.vue | 11 +++++++++++ ui/src/router/index.js | 2 ++ 4 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 ui/src/pages/Documentation.vue diff --git a/ui/src/components/Navigation/Navbar.vue b/ui/src/components/Navigation/Navbar.vue index 72c5bd4..de62765 100644 --- a/ui/src/components/Navigation/Navbar.vue +++ b/ui/src/components/Navigation/Navbar.vue @@ -61,7 +61,7 @@ function blurAfter() { - Documents + Documents diff --git a/ui/src/components/application/ApplicationForm.vue b/ui/src/components/application/ApplicationForm.vue index 6ab7da9..02b84b4 100644 --- a/ui/src/components/application/ApplicationForm.vue +++ b/ui/src/components/application/ApplicationForm.vue @@ -82,7 +82,7 @@ onMounted(() => { - + diff --git a/ui/src/pages/Documentation.vue b/ui/src/pages/Documentation.vue new file mode 100644 index 0000000..51832d6 --- /dev/null +++ b/ui/src/pages/Documentation.vue @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/ui/src/router/index.js b/ui/src/router/index.js index 29cc862..4e0a7db 100644 --- a/ui/src/router/index.js +++ b/ui/src/router/index.js @@ -18,6 +18,8 @@ const router = createRouter({ { path: '/calendar', component: () => import('@/pages/Calendar.vue'), meta: { requiresAuth: true, memberOnly: true }, }, { path: '/calendar/event/:id', component: () => import('@/pages/Calendar.vue'), meta: { requiresAuth: true, memberOnly: true }, }, + + { path: '/documents', component: () => import('@/pages/Documentation.vue'), meta: { requiresAuth: true, memberOnly: true }, }, { path: '/trainingReport', component: () => import('@/pages/TrainingReport.vue'), meta: { requiresAuth: true, memberOnly: true } }, { path: '/trainingReport/new', component: () => import('@/pages/TrainingReport.vue'), meta: { requiresAuth: true, memberOnly: true } },