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

13 lines
224 B
TypeScript
Raw Normal View History

import { t, translates } from '@/locales/translates';
export default {
home: {
title: t('pages_home_title'),
route: () => '/',
},
about: {
title: t('pages_about_title'),
route: () => '/about',
},
};