11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
|
|
const en = {
|
||
|
|
pages_home_title: 'Home',
|
||
|
|
pages_home_description: 'Welcome to the home page',
|
||
|
|
pages_about_title: 'About Us',
|
||
|
|
pages_about_description: 'Learn more about us on this page',
|
||
|
|
pages_contact_title: 'Contact Us',
|
||
|
|
pages_contact_description: 'Get in touch with us through this page',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default en;
|