919364a4dd
- Implemented FooterInfo component to display logo, slogan, and social links. - Created FooterMenuBuilder component for rendering a list of links with a title. - Added FooterMenuBuilderWrapper to encapsulate the layout for menu items.
25 lines
482 B
TypeScript
25 lines
482 B
TypeScript
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',
|
|
},
|
|
};
|