import * as React from 'react'; import {defineMessages} from 'react-intl'; import {FormattedMessage, useIntl} from 'gatsby-plugin-intl'; import AboutCard from '../components/AboutCard/AboutCard'; import AboutCardsContainer from '../components/AboutCard/AboutCardsContainer'; import AlertWrapper from '../components/AlertWrapper'; import J40MainGridContainer from '../components/J40MainGridContainer'; import Layout from '../components/layout'; // @ts-ignore import aboutUSMapImg from '../images/about-usmap.svg'; // @ts-ignore import aboutJ40Img from '../images/about-j40.svg'; import accountBalanceIcon // @ts-ignore from '/node_modules/uswds/dist/img/usa-icons/account_balance.svg'; import groupsIcon from // @ts-ignore '/node_modules/uswds/dist/img/usa-icons/groups.svg'; import commentIcon from // @ts-ignore '/node_modules/uswds/dist/img/usa-icons/comment.svg'; import githubIcon from // @ts-ignore '/node_modules/uswds/dist/img/usa-icons/github.svg'; interface IndexPageProps { location: Location; } // markup const IndexPage = ({location}: IndexPageProps) => { const intl = useIntl(); const messages = defineMessages({ presidentalLinkUri: { id: 'index.presidentalLinkUri', defaultMessage: 'https://www.whitehouse.gov/briefing-room/' + 'presidential-actions/2021/01/27/' + 'executive-order-on-tackling-the-climate-' + 'crisis-at-home-and-abroad/', description: 'Link url to presidential actions executive order. Part of paragraph 3', }, presidentalLinkLabel: { id: 'index.presidentalLinkLabel', defaultMessage: 'Executive Order on Tackling the Climate Crisis at Home and Abroad.', description: 'Link url to presidential actions executive order. Part of paragraph 3', }, transparentLabel: { id: 'index.section3.transparentLabel', defaultMessage: 'Transparent:', description: 'Italic label for 1st paragraph of section 3 on index page', }, inclusiveLabel: { id: 'index.section3.inclusiveLabel', defaultMessage: 'Inclusive:', description: 'Italic label for 2nd paragraph of section 3 on index page', }, iterativeLabel: { id: 'index.section3.iterativeLabel', defaultMessage: 'Iterative:', description: 'Italic label for 3rd paragraph of section 3 on index page', }, aboutScreenToolHeading: { id: 'index.heading.screentool', defaultMessage: 'About the screening tool', description: 'heading for about screening tool', }, aboutJustice40Heading: { id: 'index.heading.justice40', defaultMessage: 'About the Justice40 Initiative', description: 'heading for about justice 40', }, }); return (

{intl.formatMessage(messages.presidentalLinkLabel)} , }}/>

How to get started

Download the screening tool’s draft list of prioritized communities and information on how to use it for your program in the future on the data and methodology page. Find your community or communities that you may be familiar with and check their prioritization information on the map.

Get involved

Have ideas about how to acknowledge the on-the-ground experiences of your community? The screening tool’s code is open source, which means it is available for the public to view and contribute to. Anyone can view and contribute on GitHub.
); }; export default IndexPage;