Navigation Menu Items

const NAVIGATION_MENU_ITEMS

navigation-menu-items.constant.ts
import { NavigationMenuItem } from '@jet/interfaces/navigation-menu-item.interface';

export const NAVIGATION_MENU_ITEMS: NavigationMenuItem[] = [
  {
    icon: 'home',
    nameKey: 'home',
    path: '/',
  },
  {
    icon: 'person',
    nameKey: 'profile',
    path: '/profile',
  },
  {
    icon: 'settings',
    nameKey: 'settings',
    path: '/settings',
  },
];

Last updated

Was this helpful?