Added Certification mockup

This commit is contained in:
2023-11-16 23:35:25 -05:00
parent b4687d6b79
commit cbe4b5323e
13 changed files with 152 additions and 9 deletions

View File

@@ -15,6 +15,31 @@ const routes: RouteRecordRaw[] = [
component: () => import('pages/BoatPage.vue'),
name: 'boat',
},
{
path: '/booking',
component: () => import('pages/BookingPage.vue'),
name: 'booking',
},
{
path: '/certification',
component: () => import('pages/CertificationPage.vue'),
name: 'certification',
},
{
path: '/checklist',
component: () => import('pages/ChecklistPage.vue'),
name: 'checklist',
},
{
path: '/profile',
component: () => import('pages/ProfilePage.vue'),
name: 'profile',
},
{
path: '/reference',
component: () => import('pages/ReferencePage.vue'),
name: 'reference',
},
],
},
{