e4a42d3300
- Created AchievementTextBox component for displaying achievement titles. - Implemented InnerPageBanner component for inner page banners with image and title. - Added SectionTitle component for displaying section titles and descriptions. - Updated AboutTopInfo component to utilize new AchievementTextBox and SectionTitle components. - Defined TypeScript interfaces for props in each new component.
13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import { t, translates } from '@/locales/translates';
|
|
|
|
export default {
|
|
home: {
|
|
title: t('pages_home_title'),
|
|
route: () => '/',
|
|
},
|
|
about: {
|
|
title: t('pages_about_title'),
|
|
route: () => '/about-us',
|
|
},
|
|
};
|