mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-07 07:34:19 -07:00
* Header updates * More pixel alignment for nav * Update unit test snapshots I removed a stray `,` from `testHelpers.tsx` which changed the output of several snapshots. * Fixes from PR review * Forgot to update snapshots after merge with main * Removed unused (and outdated) timeline page * Updated some translation descriptions.
This commit is contained in:
parent
8df548f506
commit
08e21e5d5b
12 changed files with 299 additions and 27282 deletions
|
@ -15,45 +15,51 @@ const CEJSTPage = ({location}: IMapPageProps) => {
|
|||
// We will bring back later when we have interactive controls.
|
||||
return (
|
||||
<Layout location={location}>
|
||||
<main id="main-content" role="main">
|
||||
|
||||
<section>
|
||||
<h2>Just Progress communities</h2>
|
||||
<div className={styles.disclaimer}>
|
||||
<div className={styles.textBox}>
|
||||
<p>
|
||||
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/'}
|
||||
target={'_blank'}
|
||||
rel={'noreferrer'}>
|
||||
Executive Order on Tackling the Climate Crisis at Home and Abroad
|
||||
</a>.
|
||||
</p>
|
||||
<p>
|
||||
Download the Just Progress packet or explore the map below to see the list of prioritized communites. To
|
||||
learn more about how these communities were prioritized check out the
|
||||
|
||||
<a
|
||||
href={'./methodology'}>
|
||||
Methodology
|
||||
</a>
|
||||
|
||||
page.
|
||||
</p>
|
||||
</div>
|
||||
<DownloadPacket />
|
||||
<section>
|
||||
<h2>Just Progress communities</h2>
|
||||
<div className={styles.disclaimer}>
|
||||
<div className={styles.textBox}>
|
||||
<p>
|
||||
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/'}
|
||||
target={'_blank'}
|
||||
rel={'noreferrer'}>
|
||||
Executive Order on Tackling the Climate Crisis at Home and
|
||||
Abroad
|
||||
</a>.
|
||||
</p>
|
||||
<p>
|
||||
Download the Just Progress packet or explore the map below to see
|
||||
the list of prioritized communites. To
|
||||
learn more about how these communities were prioritized check out
|
||||
the
|
||||
|
||||
<a
|
||||
href={'./methodology'}>
|
||||
Methodology
|
||||
</a>
|
||||
|
||||
page.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<DownloadPacket/>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Explore the Tool</h2>
|
||||
<MapWrapper location={location} />
|
||||
<HowYouCanHelp />
|
||||
</main>
|
||||
<HowYouCanHelp/>
|
||||
</section>
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -1,16 +1,47 @@
|
|||
import * as React from 'react';
|
||||
import Layout from '../components/layout';
|
||||
import {FormattedMessage} from 'gatsby-plugin-intl';
|
||||
|
||||
interface ContactPageProps {
|
||||
location: Location;
|
||||
}
|
||||
|
||||
const ContactPage = ({location}: ContactPageProps) => {
|
||||
const generalemail = 'screeningtool.feedback@usds.gov';
|
||||
const techemail = 'screeningtool.support@usds.gov';
|
||||
|
||||
return (<Layout location={location}>
|
||||
<section className={'usa-prose'}>
|
||||
<h1>Contact</h1>
|
||||
<h2><FormattedMessage
|
||||
id={'contact.pageheader'}
|
||||
description={'H2 header for contact page'}
|
||||
defaultMessage={'Contact'}/></h2>
|
||||
<h3><FormattedMessage
|
||||
id={'contact.sectionheader'}
|
||||
description={'Heading for page to allow users to contact project maintainers'}
|
||||
defaultMessage={'Email us'}/></h3>
|
||||
|
||||
<p>
|
||||
<i>Information pending</i>
|
||||
<FormattedMessage
|
||||
id={'contact.general'}
|
||||
description={'Contact page body text'}
|
||||
defaultMessage={`
|
||||
For general feedback, email {general_email_address}
|
||||
`}
|
||||
values={{
|
||||
general_email_address: <a href={`mailto:${generalemail}`}>{generalemail}</a>,
|
||||
}}/>
|
||||
</p>
|
||||
<p>
|
||||
<FormattedMessage
|
||||
id={'contact.general'}
|
||||
description={'Contact page body text'}
|
||||
defaultMessage={`
|
||||
For technical support, email {tech_email_address}
|
||||
`}
|
||||
values={{
|
||||
tech_email_address: <a href={`mailto:${techemail}`}>{techemail}</a>,
|
||||
}}/>
|
||||
</p>
|
||||
</section>
|
||||
</Layout>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue