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: () => '/',
|
|
|
|
|
},
|
|
|
|
|
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
|
|
|
},
|
|
|
|
|
};
|