65 lines
1013 B
TypeScript
65 lines
1013 B
TypeScript
import {
|
|
mdiMenu,
|
|
mdiClockOutline,
|
|
mdiCloud,
|
|
mdiCrop,
|
|
mdiAccount,
|
|
mdiCogOutline,
|
|
mdiEmail,
|
|
mdiLogout,
|
|
mdiThemeLightDark,
|
|
mdiGithub,
|
|
mdiVuejs,
|
|
} from '@mdi/js'
|
|
import { MenuNavBarItem } from './interfaces'
|
|
|
|
const menuNavBar: MenuNavBarItem[] = [
|
|
{
|
|
isCurrentUser: true,
|
|
menu: [
|
|
{
|
|
icon: mdiAccount,
|
|
label: 'My Profile',
|
|
href: '/profile',
|
|
},
|
|
{
|
|
isDivider: true,
|
|
},
|
|
{
|
|
icon: mdiLogout,
|
|
label: 'Log Out',
|
|
isLogout: true,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
icon: mdiThemeLightDark,
|
|
label: 'Light/Dark',
|
|
isDesktopNoLabel: true,
|
|
isToggleLightDark: true,
|
|
},
|
|
{
|
|
icon: mdiLogout,
|
|
label: 'Log out',
|
|
isDesktopNoLabel: true,
|
|
isLogout: true,
|
|
},
|
|
]
|
|
|
|
export const webPagesNavBar: MenuNavBarItem[] = [
|
|
{
|
|
label: 'Home',
|
|
href: '/',
|
|
},
|
|
{
|
|
label: 'Privacy',
|
|
href: '/privacy-policy',
|
|
},
|
|
{
|
|
label: 'Terms',
|
|
href: '/terms-of-use',
|
|
},
|
|
]
|
|
|
|
export default menuNavBar
|