1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { SecondaryNavItemProps } from '~/types/nav';
export const SECONDARY_MENU_ITEMS: SecondaryNavItemProps[] = [
{
label: 'Semua Promo',
href: '/shop/promo',
},{
label: 'Semua Brand',
href: '/shop/brands',
},
{
label: 'Ready Stock',
href: '/shop/search?orderBy=stock',
},
{
label: 'Blog Indoteknik',
href: 'https://blog.indoteknik.com/',
},
{
label: 'Indoteknik TV',
href: '/video',
},
];
|