import { t, translates } from '@/locales/translates'; export default { home: { title: t('pages_home_title'), route: () => '/', }, productCategories: { title: t('pages_product_categories_title'), route: () => '/product-categories', }, products: { title: t('pages_products_title'), route: (productId: string) => `/product-categories/${productId}`, }, 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', }, };