File size: 848 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
/*
* HomePage Messages
*
* This contains all the text for the HomePage component.
*/
import { defineMessages } from 'react-intl';
export const scope = 'boilerplate.containers.HomePage';
export default defineMessages({
startProjectHeader: {
id: `${scope}.start_project.header`,
defaultMessage: 'Start your next react project in seconds',
},
startProjectMessage: {
id: `${scope}.start_project.message`,
defaultMessage:
'A highly scalable, offline-first foundation with the best DX and a focus on performance and best practices',
},
trymeHeader: {
id: `${scope}.tryme.header`,
defaultMessage: 'Try me!',
},
trymeMessage: {
id: `${scope}.tryme.message`,
defaultMessage: 'Show Github repositories by',
},
trymeAtPrefix: {
id: `${scope}.tryme.atPrefix`,
defaultMessage: '@',
},
});
|