Files
pasargad/src/assets/constants/routeFactory/index.ts
T

25 lines
485 B
TypeScript
Raw Normal View History

import { t, translates } from '@/locales/translates';
export default {
home: {
title: t('pages_home_title'),
route: () => '/',
},
products: {
title: t('pages_products_title'),
route: () => '/products',
},
projects: {
title: t('pages_projects_title'),
route: () => '/projects',
},
about: {
title: t('pages_about_title'),
route: () => '/about-us',
},
contact: {
title: t('pages_contact_title'),
route: () => '/contact',
},
};