2025-06-01 17:21:11 +03:30
|
|
|
import { t, translates } from '@/locales/translates';
|
2025-05-31 16:41:12 +03:30
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
home: {
|
2025-06-01 17:21:11 +03:30
|
|
|
title: t('pages_home_title'),
|
2025-05-31 16:41:12 +03:30
|
|
|
route: () => '/',
|
|
|
|
|
},
|
2025-06-03 17:13:44 +03:30
|
|
|
productCategories: {
|
|
|
|
|
title: t('pages_product_categories_title'),
|
|
|
|
|
route: () => '/product-categories',
|
|
|
|
|
},
|
2025-06-02 18:06:15 +03:30
|
|
|
products: {
|
2025-06-03 10:45:10 +03:30
|
|
|
title: t('pages_products_title'),
|
2025-06-03 17:13:44 +03:30
|
|
|
route: (productId: string) => `/product-categories/${productId}`,
|
2025-06-02 18:06:15 +03:30
|
|
|
},
|
|
|
|
|
projects: {
|
2025-06-03 10:45:10 +03:30
|
|
|
title: t('pages_projects_title'),
|
2025-06-02 18:06:15 +03:30
|
|
|
route: () => '/projects',
|
|
|
|
|
},
|
2025-05-31 16:41:12 +03:30
|
|
|
about: {
|
2025-06-01 17:21:11 +03:30
|
|
|
title: t('pages_about_title'),
|
2025-06-02 14:13:15 +03:30
|
|
|
route: () => '/about-us',
|
2025-05-31 16:41:12 +03:30
|
|
|
},
|
2025-06-02 18:06:15 +03:30
|
|
|
contact: {
|
2025-06-03 10:45:10 +03:30
|
|
|
title: t('pages_contact_title'),
|
2025-06-02 18:06:15 +03:30
|
|
|
route: () => '/contact',
|
|
|
|
|
},
|
2025-05-31 16:41:12 +03:30
|
|
|
};
|