51 lines
801 B
TypeScript
51 lines
801 B
TypeScript
export const links = [
|
|
{
|
|
name: 'Home',
|
|
to: '/',
|
|
icon: 'home',
|
|
front_links: false,
|
|
},
|
|
{
|
|
name: 'Profile',
|
|
to: '/profile',
|
|
icon: 'account_circle',
|
|
front_links: false,
|
|
},
|
|
{
|
|
name: 'Boats',
|
|
to: '/boat',
|
|
icon: 'sailing',
|
|
front_links: true,
|
|
},
|
|
{
|
|
name: 'Schedule',
|
|
to: '/schedule',
|
|
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,
|
|
},
|
|
{
|
|
name: 'Tasks',
|
|
to: '/task',
|
|
icon: 'build',
|
|
front_links: true,
|
|
},
|
|
];
|