mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-07-28 09:41:17 -07:00
* Fix all failing cypress tests - update test name to be more appropriate - update download packet tests to CDN - update data-cy tag on About heading * Update snapshot
150 lines
5.2 KiB
TypeScript
150 lines
5.2 KiB
TypeScript
import * as React from 'react';
|
|
import {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';
|
|
|
|
import * as ABOUT_COPY from '../data/copy/about';
|
|
import * as CONTACT_COPY from '../data/copy/contact';
|
|
|
|
// @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();
|
|
|
|
return (
|
|
<Layout location={location} title={intl.formatMessage(ABOUT_COPY.PAGE.TILE)}>
|
|
<J40MainGridContainer>
|
|
<AlertWrapper showBetaAlert={true} showLimitedDataAlert={false}/>
|
|
</J40MainGridContainer>
|
|
|
|
<J40MainGridContainer>
|
|
<h1 data-cy={'about-page-heading'}>{intl.formatMessage(ABOUT_COPY.PAGE.HEADING)}</h1>
|
|
<AboutCardsContainer>
|
|
<AboutCard
|
|
size={'large'}
|
|
imgSrc={aboutUSMapImg}
|
|
header={intl.formatMessage(ABOUT_COPY.PAGE.HEADING_1)}>
|
|
<>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.PAGE.HEADING1_DESCRIPTION1)}
|
|
</p>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.PAGE.HEADING1_DESCRIPTION2)}
|
|
</p>
|
|
</>
|
|
</AboutCard>
|
|
</AboutCardsContainer>
|
|
|
|
<AboutCardsContainer>
|
|
<AboutCard
|
|
size={'large'}
|
|
imgSrc={aboutJ40Img}
|
|
header={intl.formatMessage(ABOUT_COPY.PAGE.HEADING_2)}>
|
|
<>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.PAGE.HEADING2_DESCRIPTION1)}
|
|
</p>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.PAGE.HEADING2_DESCRIPTION2)}
|
|
{' '}
|
|
<a href={ABOUT_COPY.EXEC_ORDER_LINK} target={'_blank'} rel="noreferrer">
|
|
{intl.formatMessage(ABOUT_COPY.PAGE.PRESIDENT_LINK_LABEL)}
|
|
</a>
|
|
</p>
|
|
</>
|
|
</AboutCard>
|
|
</AboutCardsContainer>
|
|
</J40MainGridContainer>
|
|
|
|
<J40MainGridContainer
|
|
fullWidth={true}
|
|
blueBackground={true}>
|
|
<J40MainGridContainer>
|
|
<h2>
|
|
{intl.formatMessage(ABOUT_COPY.HOW_TO_GET_STARTED.TITLE)}
|
|
</h2>
|
|
<AboutCardsContainer>
|
|
<AboutCard
|
|
size={'small'}
|
|
imgSrc={accountBalanceIcon}
|
|
header={intl.formatMessage(ABOUT_COPY.HOW_TO_GET_STARTED.FEDERAL_PM_HEADING)}
|
|
linkText={intl.formatMessage(ABOUT_COPY.HOW_TO_GET_STARTED.FEDERAL_PM_LINK_TEXT)}
|
|
url={'/methodology'}
|
|
internal={true}>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.HOW_TO_GET_STARTED.FEDERAL_PM_INFO)}
|
|
</p>
|
|
</AboutCard>
|
|
|
|
<AboutCard
|
|
size={'small'}
|
|
imgSrc={groupsIcon}
|
|
header={intl.formatMessage(ABOUT_COPY.HOW_TO_GET_STARTED.COMMUNITY_MEMBERS_HEADING)}
|
|
linkText={intl.formatMessage(ABOUT_COPY.HOW_TO_GET_STARTED.COMMUNITY_MEMBERS_LINK_TEXT)}
|
|
url={'/cejst'}
|
|
internal={true}>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.HOW_TO_GET_STARTED.COMMUNITY_MEMBERS_INFO)}
|
|
</p>
|
|
</AboutCard>
|
|
</AboutCardsContainer>
|
|
</J40MainGridContainer>
|
|
</J40MainGridContainer>
|
|
|
|
<J40MainGridContainer>
|
|
<h2>{intl.formatMessage(ABOUT_COPY.GET_INVOLVED.TITLE)}</h2>
|
|
<AboutCardsContainer>
|
|
<AboutCard
|
|
size={'small'}
|
|
imgSrc={commentIcon}
|
|
header={intl.formatMessage(ABOUT_COPY.GET_INVOLVED.SEND_FEEDBACK_HEADING)}
|
|
linkText={`Email: ${CONTACT_COPY.FEEDBACK_EMAIL}`}
|
|
url={`mailto:${CONTACT_COPY.FEEDBACK_EMAIL}`}
|
|
openUrlNewTab={true}
|
|
internal={false}>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.GET_INVOLVED.SEND_FEEDBACK_INFO)}
|
|
</p>
|
|
</AboutCard>
|
|
|
|
<AboutCard
|
|
size={'small'}
|
|
imgSrc={githubIcon}
|
|
header={intl.formatMessage(ABOUT_COPY.GET_INVOLVED.JOIN_OSC_HEADING)}
|
|
linkText={intl.formatMessage(ABOUT_COPY.GET_INVOLVED.JOIN_OSC_LINK_TEXT)}
|
|
url={ABOUT_COPY.GITHUB_LINK}
|
|
openUrlNewTab={true}
|
|
internal={false}>
|
|
<p>
|
|
{intl.formatMessage(ABOUT_COPY.GET_INVOLVED.JOIN_OSC_INFO)}
|
|
</p>
|
|
</AboutCard>
|
|
</AboutCardsContainer>
|
|
</J40MainGridContainer>
|
|
</Layout>);
|
|
};
|
|
|
|
export default IndexPage;
|