import { Icon } from '@iconify/react'; import { NavItem } from '@/components/types'; export const NAV_ITEMS: NavItem[] = [ { title: 'Home', path: '/', }, { title: 'DexNet', path: '/dexnet', }, { title: 'Go Kits', path: '', submenu: true, subMenuItems: [ { title: 'Go Kit Command Center', path: '/projects/go-kit-command-center' }, ], } ];