mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-03 15:44:18 -07:00
parent
9ba4e790a7
commit
7cfb56476e
7 changed files with 96 additions and 13 deletions
|
@ -12,6 +12,8 @@ export const FAQS_LINK = 'https://www.whitehouse.gov/wp-content/uploads/2022/02/
|
||||||
export const FED_RECOGNIZED_INDIAN_ENTITIES = `https://www.federalregister.gov/documents/2022/01/28/2022-01789/indian-entities-recognized-by-and-eligible-to-receive-services-from-the-united-states-bureau-of`;
|
export const FED_RECOGNIZED_INDIAN_ENTITIES = `https://www.federalregister.gov/documents/2022/01/28/2022-01789/indian-entities-recognized-by-and-eligible-to-receive-services-from-the-united-states-bureau-of`;
|
||||||
export const EJSCREEN = 'https://www.epa.gov/ejscreen/how-does-epa-use-ejscreen';
|
export const EJSCREEN = 'https://www.epa.gov/ejscreen/how-does-epa-use-ejscreen';
|
||||||
|
|
||||||
|
export const CEJST_INSTRUCT = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf`;
|
||||||
|
export const CEJST_MEMO = `https://www.whitehouse.gov/wp-content/uploads/2023/01/M-23-09_Signed_CEQ_CPO.pdf`;
|
||||||
export const PAGE = defineMessages({
|
export const PAGE = defineMessages({
|
||||||
TITLE: {
|
TITLE: {
|
||||||
id: 'about.page.title.text',
|
id: 'about.page.title.text',
|
||||||
|
@ -58,17 +60,23 @@ export const CONTENT = {
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id={'about.page.list.item.1'}
|
id={'about.page.list.item.1'}
|
||||||
defaultMessage={`
|
defaultMessage={`
|
||||||
Addendum to the Justice40 Initiative Interim Guidance on Using CEJST
|
<link1>Memorandum</link1> on Using the CEJST for the Justice40 Initiative
|
||||||
`}
|
`}
|
||||||
description={'Navigate to the About page. This is the list item 1'}
|
description={'Navigate to the About page. This is the list item 1'}
|
||||||
|
values={{
|
||||||
|
link1: linkFn(CEJST_MEMO, false, true),
|
||||||
|
}}
|
||||||
/>,
|
/>,
|
||||||
LI2:
|
LI2:
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id={'about.page.list.item.2'}
|
id={'about.page.list.item.2'}
|
||||||
defaultMessage={`
|
defaultMessage={`
|
||||||
Instructions to Federal Agencies on Using the CEJST
|
<link1>Instructions</link1> to Federal agencies on using the CEJST
|
||||||
`}
|
`}
|
||||||
description={'Navigate to the About page. This is the list item 2'}
|
description={'Navigate to the About page. This is the list item 2'}
|
||||||
|
values={{
|
||||||
|
link1: linkFn(CEJST_INSTRUCT, false, true),
|
||||||
|
}}
|
||||||
/>,
|
/>,
|
||||||
PARA4:
|
PARA4:
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
|
|
@ -4,7 +4,7 @@ import {defineMessages, FormattedMessage} from 'gatsby-plugin-intl';
|
||||||
|
|
||||||
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
|
import LinkTypeWrapper from '../../components/LinkTypeWrapper';
|
||||||
|
|
||||||
import {EJSCREEN, EXEC_ORDER_LINK, FED_RECOGNIZED_INDIAN_ENTITIES} from './about';
|
import {EJSCREEN, EXEC_ORDER_LINK, FED_RECOGNIZED_INDIAN_ENTITIES, CEJST_INSTRUCT, CEJST_MEMO} from './about';
|
||||||
import {boldFn, linkFn, FEEDBACK_EMAIL} from './common';
|
import {boldFn, linkFn, FEEDBACK_EMAIL} from './common';
|
||||||
import {PAGES_ENDPOINTS} from '../constants';
|
import {PAGES_ENDPOINTS} from '../constants';
|
||||||
import {EXPLORE_PAGE_LINKS} from './explore';
|
import {EXPLORE_PAGE_LINKS} from './explore';
|
||||||
|
@ -270,13 +270,20 @@ export const FAQ_ANSWERS = {
|
||||||
/>,
|
/>,
|
||||||
Q1_P3_1: <FormattedMessage
|
Q1_P3_1: <FormattedMessage
|
||||||
id={ 'faqs.page.answers.Q1_P3_1'}
|
id={ 'faqs.page.answers.Q1_P3_1'}
|
||||||
defaultMessage={ 'Addendum to the Justice40 Interim Guidance'}
|
defaultMessage={ '<link1>Memorandum</link1> on Using the CEJST for the Justice40 Initiative'}
|
||||||
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_1'}
|
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_1'}
|
||||||
|
values={{
|
||||||
|
link1: linkFn(CEJST_MEMO, false, true),
|
||||||
|
}}
|
||||||
/>,
|
/>,
|
||||||
Q1_P3_2: <FormattedMessage
|
Q1_P3_2: <FormattedMessage
|
||||||
id={ 'faqs.page.answers.Q1_P3_2'}
|
id={ 'faqs.page.answers.Q1_P3_2'}
|
||||||
defaultMessage={ 'Instructions to Federal Agencies on Using the CEJST'}
|
defaultMessage={ '<link1>Instructions</link1> to Federal agencies on using the CEJST'}
|
||||||
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_2'}
|
description={ 'Navigate to the FAQs page, this will be an answer, Q1_P3_2'}
|
||||||
|
values={{
|
||||||
|
link1: linkFn(CEJST_INSTRUCT, false, true),
|
||||||
|
}}
|
||||||
|
|
||||||
/>,
|
/>,
|
||||||
Q1_P4: <FormattedMessage
|
Q1_P4: <FormattedMessage
|
||||||
id={ 'faqs.page.answers.Q1_P4'}
|
id={ 'faqs.page.answers.Q1_P4'}
|
||||||
|
|
|
@ -56,11 +56,11 @@
|
||||||
"description": "Navigate to the About page. This is the join the community heading"
|
"description": "Navigate to the About page. This is the join the community heading"
|
||||||
},
|
},
|
||||||
"about.page.list.item.1": {
|
"about.page.list.item.1": {
|
||||||
"defaultMessage": "Addendum to the Justice40 Initiative Interim Guidance on Using CEJST",
|
"defaultMessage": "<link1>Memorandum</link1> on Using the CEJST for the Justice40 Initiative",
|
||||||
"description": "Navigate to the About page. This is the list item 1"
|
"description": "Navigate to the About page. This is the list item 1"
|
||||||
},
|
},
|
||||||
"about.page.list.item.2": {
|
"about.page.list.item.2": {
|
||||||
"defaultMessage": "Instructions to Federal Agencies on Using the CEJST",
|
"defaultMessage": "<link1>Instructions</link1> to Federal agencies on using the CEJST",
|
||||||
"description": "Navigate to the About page. This is the list item 2"
|
"description": "Navigate to the About page. This is the list item 2"
|
||||||
},
|
},
|
||||||
"about.page.paragraph.1": {
|
"about.page.paragraph.1": {
|
||||||
|
@ -1680,11 +1680,11 @@
|
||||||
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3"
|
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3"
|
||||||
},
|
},
|
||||||
"faqs.page.answers.Q1_P3_1": {
|
"faqs.page.answers.Q1_P3_1": {
|
||||||
"defaultMessage": "Addendum to the Justice40 Interim Guidance",
|
"defaultMessage": "<link1>Memorandum</link1> on Using the CEJST for the Justice40 Initiative",
|
||||||
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3_1"
|
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3_1"
|
||||||
},
|
},
|
||||||
"faqs.page.answers.Q1_P3_2": {
|
"faqs.page.answers.Q1_P3_2": {
|
||||||
"defaultMessage": "Instructions to Federal Agencies on Using the CEJST",
|
"defaultMessage": "<link1>Instructions</link1> to Federal agencies on using the CEJST",
|
||||||
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3_2"
|
"description": "Navigate to the FAQs page, this will be an answer, Q1_P3_2"
|
||||||
},
|
},
|
||||||
"faqs.page.answers.Q1_P4": {
|
"faqs.page.answers.Q1_P4": {
|
||||||
|
|
|
@ -57,13 +57,13 @@ const AboutPage = ({location}: IAboutPageProps) => {
|
||||||
<p>
|
<p>
|
||||||
{ABOUT_COPY.CONTENT.PARA2}
|
{ABOUT_COPY.CONTENT.PARA2}
|
||||||
</p>
|
</p>
|
||||||
{/* <div className={'j40-p-tag'}>
|
<div className={'j40-p-tag'}>
|
||||||
{ABOUT_COPY.CONTENT.PARA3}
|
{ABOUT_COPY.CONTENT.PARA3}
|
||||||
<ul>
|
<ul>
|
||||||
<li> {ABOUT_COPY.CONTENT.LI1}</li>
|
<li> {ABOUT_COPY.CONTENT.LI1}</li>
|
||||||
<li> {ABOUT_COPY.CONTENT.LI2}</li>
|
<li> {ABOUT_COPY.CONTENT.LI2}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div> */}
|
</div>
|
||||||
<p>
|
<p>
|
||||||
{ABOUT_COPY.CONTENT.PARA4}
|
{ABOUT_COPY.CONTENT.PARA4}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -47,11 +47,11 @@ const FAQPage = ({location}: IFAQPageProps) => {
|
||||||
<>
|
<>
|
||||||
<p key={1}>{FAQS_COPY.FAQ_ANSWERS.Q1_P1}</p>
|
<p key={1}>{FAQS_COPY.FAQ_ANSWERS.Q1_P1}</p>
|
||||||
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P2}</p>
|
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P2}</p>
|
||||||
{/* <p>{FAQS_COPY.FAQ_ANSWERS.Q1_P3}</p>
|
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P3}</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>{FAQS_COPY.FAQ_ANSWERS.Q1_P3_1}</li>
|
<li>{FAQS_COPY.FAQ_ANSWERS.Q1_P3_1}</li>
|
||||||
<li>{FAQS_COPY.FAQ_ANSWERS.Q1_P3_2}</li>
|
<li>{FAQS_COPY.FAQ_ANSWERS.Q1_P3_2}</li>
|
||||||
</ul> */}
|
</ul>
|
||||||
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P4}</p>
|
<p>{FAQS_COPY.FAQ_ANSWERS.Q1_P4}</p>
|
||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
|
|
|
@ -454,6 +454,45 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
. The Justice40 Initiative seeks to deliver 40% of the overall benefits of investments in climate, clean energy, and related areas to disadvantaged communities.
|
. The Justice40 Initiative seeks to deliver 40% of the overall benefits of investments in climate, clean energy, and related areas to disadvantaged communities.
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
<div
|
||||||
|
class="j40-p-tag"
|
||||||
|
>
|
||||||
|
|
||||||
|
Federal agencies should also use the following:
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
|
||||||
|
|
||||||
|
<a
|
||||||
|
class="usa-link usa-link--external"
|
||||||
|
data-cy=""
|
||||||
|
href="https://www.whitehouse.gov/wp-content/uploads/2023/01/M-23-09_Signed_CEQ_CPO.pdf"
|
||||||
|
rel="noreferrer"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Memorandum
|
||||||
|
</a>
|
||||||
|
on Using the CEJST for the Justice40 Initiative
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
|
||||||
|
|
||||||
|
<a
|
||||||
|
class="usa-link usa-link--external"
|
||||||
|
data-cy=""
|
||||||
|
href="https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf"
|
||||||
|
rel="noreferrer"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Instructions
|
||||||
|
</a>
|
||||||
|
to Federal agencies on using the CEJST
|
||||||
|
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
CEQ will update the tool each year based on public feedback, research, and the availability of new data. The current version of the tool is version 1.0.
|
CEQ will update the tool each year based on public feedback, research, and the availability of new data. The current version of the tool is version 1.0.
|
||||||
|
|
|
@ -462,6 +462,35 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<p>
|
<p>
|
||||||
Federal agencies will use the tool for the Justice40 Initiative. It will help them identify disadvantaged communities that should receive 40% of the overall benefits of programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits in climate, clean energy, and other related areas to disadvantaged communities.
|
Federal agencies will use the tool for the Justice40 Initiative. It will help them identify disadvantaged communities that should receive 40% of the overall benefits of programs included in the Justice40 Initiative. The Justice40 Initiative seeks to deliver 40% of the overall benefits in climate, clean energy, and other related areas to disadvantaged communities.
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
Other useful links for Federal agencies:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="usa-link usa-link--external"
|
||||||
|
data-cy=""
|
||||||
|
href="https://www.whitehouse.gov/wp-content/uploads/2023/01/M-23-09_Signed_CEQ_CPO.pdf"
|
||||||
|
rel="noreferrer"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Memorandum
|
||||||
|
</a>
|
||||||
|
on Using the CEJST for the Justice40 Initiative
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="usa-link usa-link--external"
|
||||||
|
data-cy=""
|
||||||
|
href="https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf"
|
||||||
|
rel="noreferrer"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
Instructions
|
||||||
|
</a>
|
||||||
|
to Federal agencies on using the CEJST
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
The public can find communities of interest and provide feedback. This feedback will be used to improve the tool.
|
The public can find communities of interest and provide feedback. This feedback will be used to improve the tool.
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue