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

38
src/router/navlinks.ts Normal file
View 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,
},
];