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-1.svg'; // @ts-ignore import aboutJ40Img from '../images/about-j40-1.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 14008 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: 'The screening tool', description: 'heading for about screening tool', }, aboutJustice40Heading: { id: 'index.heading.justice40', defaultMessage: '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 communities of focus. Explore data that may be useful to your program, and provide feedback on the tool. Explore data about communities of focus in your area, and help provide feedback on the tool.

Get involved

Have ideas about how this tool can be improved to better reflect 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;