Files
bab-app/src/router/navlinks.ts
2023-11-24 07:52:01 -05:00

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,
},
];