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