Added Certification mockup
This commit is contained in:
38
src/router/navlinks.ts
Normal file
38
src/router/navlinks.ts
Normal file
@@ -0,0 +1,38 @@
|
||||
export const links = [
|
||||
{
|
||||
name: 'Profile',
|
||||
to: 'profile',
|
||||
icon: 'account_circle',
|
||||
front_links: false,
|
||||
},
|
||||
{
|
||||
name: 'Boats',
|
||||
to: 'boat',
|
||||
icon: 'sailing',
|
||||
front_links: true,
|
||||
},
|
||||
{
|
||||
name: 'Booking',
|
||||
to: 'booking',
|
||||
icon: 'calendar_month',
|
||||
front_links: true,
|
||||
},
|
||||
{
|
||||
name: 'Certifications',
|
||||
to: 'certification',
|
||||
icon: 'verified',
|
||||
front_links: true,
|
||||
},
|
||||
{
|
||||
name: 'Checklists',
|
||||
to: 'checklist',
|
||||
icon: 'checklist',
|
||||
front_links: true,
|
||||
},
|
||||
{
|
||||
name: 'Reference',
|
||||
to: 'reference',
|
||||
icon: 'info_outline',
|
||||
front_links: true,
|
||||
},
|
||||
];
|
||||
@@ -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',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user