mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-19 17:01:39 -07:00
* Add category header (Indicator and Percentile) - add local styling - override accordion-content styles to push into parent container - intl copy - update snapshots * Add latest Living Copy - refactor dataset cards to allow for any styling in description, used in and responsible party - add percent for HS edu indicator - updates snapshots * Update copy from Living Copy doc -update snapshots * Add methodology to copy * Remove link from readme file based on md checker * Comment out certain markdown links from checker * Comment out markdown links that render in browser
129 lines
3.5 KiB
TypeScript
129 lines
3.5 KiB
TypeScript
import {defineMessages} from 'react-intl';
|
|
|
|
// Beta Banner
|
|
export const BETA_BANNER = defineMessages({
|
|
TITLE: {
|
|
id: 'banner.beta.title',
|
|
defaultMessage: 'This is a beta site.',
|
|
description: 'the main title of the beta banner',
|
|
},
|
|
INFO: {
|
|
id: 'banner.beta.info',
|
|
defaultMessage: `It is an early, in-progress version of the tool with limited datasets that will
|
|
be regularly updated.`,
|
|
description: 'the main info of the beta banner',
|
|
},
|
|
});
|
|
|
|
// Header
|
|
export const HEADER = defineMessages({
|
|
TITLE_LINE_1: {
|
|
id: 'header.title.line1',
|
|
defaultMessage: `Climate and Economic Justice`,
|
|
description: 'Title in nav header line 1 of 2',
|
|
},
|
|
TITLE_LINE_2: {
|
|
id: 'header.title.line2',
|
|
defaultMessage: `Screening Tool`,
|
|
description: 'Title in nav header line 2 of 2',
|
|
},
|
|
ABOUT: {
|
|
id: 'header.about',
|
|
defaultMessage: 'About',
|
|
description: 'Header navigate item to the about page',
|
|
},
|
|
EXPLORE: {
|
|
id: 'header.explore',
|
|
defaultMessage: 'Explore the tool',
|
|
description: 'Header navigate item to the Explore the tool page',
|
|
},
|
|
METHODOLOGY: {
|
|
id: 'header.methodology',
|
|
defaultMessage: 'Methodology & data',
|
|
description: 'Header navigate item to the Methodology page',
|
|
},
|
|
CONTACT: {
|
|
id: 'header.contact',
|
|
defaultMessage: 'Contact',
|
|
description: 'Header navigate item to the Contact page',
|
|
},
|
|
});
|
|
|
|
// Footer
|
|
export const FOOTER = defineMessages({
|
|
ARIA_LABEL: {
|
|
id: 'footer.arialabel',
|
|
defaultMessage: 'Footer navigation',
|
|
description: 'aria-label text for whole footer',
|
|
},
|
|
TITLE: {
|
|
id: 'footer.logo.title',
|
|
defaultMessage: 'Council on Environmental Quality',
|
|
description: 'Footer under logo',
|
|
},
|
|
MORE_INFO: {
|
|
id: 'footer.moreinfoheader',
|
|
defaultMessage: 'More information',
|
|
description: 'Footer column header',
|
|
},
|
|
WHITEHOUSE: {
|
|
id: 'footer.whitehouse.text',
|
|
defaultMessage: 'Whitehouse.gov',
|
|
description: 'Footer Whitehouse.gov link text',
|
|
},
|
|
WHITEHOUSE_LINK: {
|
|
id: 'footer.whitehouse.link',
|
|
defaultMessage: 'https://www.whitehouse.gov/',
|
|
description: 'Footer Whitehouse.gov link text',
|
|
},
|
|
FOIA: {
|
|
id: 'footer.foia.text',
|
|
defaultMessage: 'Freedom of Information Act (FOIA)',
|
|
description: 'Footer FOIA link text',
|
|
},
|
|
PRIVACY: {
|
|
id: 'footer.privacy.text',
|
|
defaultMessage: 'Privacy Policy',
|
|
description: 'Footer privacy policy link text',
|
|
},
|
|
PRIVACY_LINK: {
|
|
id: 'footer.privacy.link',
|
|
defaultMessage: 'https://www.whitehouse.gov/privacy/',
|
|
description: 'Footer privacy policy link text',
|
|
},
|
|
LOGO_ALT: {
|
|
id: 'footer.whitehouselogoalt',
|
|
defaultMessage: 'Whitehouse logo',
|
|
description: 'Footer Whitehouse logo alt text',
|
|
},
|
|
QUESTIONS: {
|
|
id: 'footer.questionsheader',
|
|
defaultMessage: 'Have a question about government services?',
|
|
description: 'Footer column header',
|
|
},
|
|
FIND_CONTACT: {
|
|
id: 'footer.findcontact',
|
|
defaultMessage: 'Find a contact at USA.gov',
|
|
description: 'Footer find contact link text',
|
|
},
|
|
FIND_CONTACT_LINK: {
|
|
id: 'footer.findcontact.link',
|
|
defaultMessage: 'https://www.usa.gov/',
|
|
description: 'Footer find contact link text',
|
|
},
|
|
CONTACT: {
|
|
id: 'footer.contactheader',
|
|
defaultMessage: 'Contact',
|
|
description: 'Footer column header',
|
|
},
|
|
});
|
|
|
|
export const FOOTER_CEQ_ADDRESS = {
|
|
NAME: 'Council on Environmental Quality',
|
|
STREET: '730 Jackson Pl NW',
|
|
CITY_STATE: 'Washington, D.C. 20506',
|
|
PHONE: '(202) 395-5750',
|
|
}
|
|
;
|
|
|
|
|