blob: d1adebcabacbd19e8f99aa23a2c769ed3d6ab939 (
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',
},
];
|