blob: 853da507dedf652a0b5610aedc17511b9b5b5bed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { SecondaryNavItemProps } from '../types/nav'
export const SECONDARY_MENU_ITEMS: SecondaryNavItemProps[] = [
{
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'
}
]
|