| 123456789101112131415161718192021222324252627282930313233 |
- import {
- BASE_PAGE,
- CONTACT_PAGE,
- PRODUCTS_PAGE,
- } from '../../../constants/pages';
-
- export const items = [
- {
- id: 1,
- name: 'Home',
- url: BASE_PAGE,
- },
- {
- id: 2,
- name: 'Menu',
- url: BASE_PAGE,
- },
- {
- id: 3,
- name: 'About',
- url: BASE_PAGE,
- },
- {
- id: 4,
- name: 'Store',
- url: PRODUCTS_PAGE,
- },
- {
- id: 5,
- name: 'Contact',
- url: CONTACT_PAGE,
- },
- ];
|