Site content and style update for sprint2/3 (#279)

* add legend and styling for map page
* update header to latest style/content
* add contact page
* add methodology page
#199 and #200
This commit is contained in:
TomNUSDS 2021-07-01 07:28:43 -07:00 committed by GitHub
commit f4f7c35ca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 202 additions and 74 deletions

View file

@ -3,8 +3,8 @@ import Layout from '../components/layout';
// import MapWrapper from '../components/map';
import MapWrapper from '../components/mapWrapper';
import HowYouCanHelp from '../components/HowYouCanHelp';
import {Alert} from '@trussworks/react-uswds';
import * as styles from './cejst.module.scss';
import MapLegend from '../components/MapLegend';
interface IMapPageProps {
@ -17,39 +17,26 @@ const CEJSTPage = ({location}: IMapPageProps) => {
return (
<Layout location={location}>
<main id="main-content" role="main">
<h2>Just Progress communities</h2>
<p className={styles.disclaimer}>
The Climate and Economic Justice Screening Tool helps
identify and prioritize communities across the United
States and US territories that have been historically
overburdened and underserved so that they may receive
40% of the benefits from investments in six key areas as
outlined in the <a
Just Progress helps identify and prioritize communities across the
United States and U.S. territories that have been historically
overburdened and underserved. These communities will receive 40% of
the benefits from investments in key areas outlined by the
<a
href={'https://www.whitehouse.gov/briefing-room/' +
'presidential-actions/2021/01/27/' +
'executive-order-on-tackling-the-climate-' +
'crisis-at-home-and-abroad/'}
'presidential-actions/2021/01/27/' +
'executive-order-on-tackling-the-climate-' +
'crisis-at-home-and-abroad/'}
target={'_blank'}
rel={'noreferrer'}>
Executive Order on Tackling the Climate Crisis at Home and
Abroad</a>.
Explore the map below or learn
more about the methodology and data indicators used to
prioritize Justice40 communities.
Executive Order on Tackling the Climate Crisis at Home and
Abroad</a>.
</p>
<Alert
type="warning"
heading="Limited Data Sources">
<p>
In this tool, we are using data sources that our
combined by our cumulative impact methodology.
Our sources were selected because sit amet,
consectetur adipiscing. See all the sources we
are investigating on our data roadmap.
</p>
</Alert>
<h2>Explore the Tool</h2>
<MapWrapper/>
<HowYouCanHelp />
<MapLegend/>
<HowYouCanHelp/>
</main>
</Layout>
);