mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-03 16:54:19 -07:00
* Extract 404 page copy to intl * Move all copy to data copy folder and add tests - Add test:intl-extraction script - Fix certain defaultMessages not appearing - update snapshot
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import {Button, Grid} from '@trussworks/react-uswds';
|
|
|
|
import * as styles from './downloadPacket.module.scss';
|
|
import * as METHODOLOGY_COPY from '../../data/copy/methodology';
|
|
|
|
// @ts-ignore
|
|
import downloadIcon from '/node_modules/uswds/dist/img/usa-icons/file_download.svg';
|
|
|
|
const DownloadPacket = () => {
|
|
return (
|
|
<Grid>
|
|
<div className={styles.downloadBoxContainer}>
|
|
<div className={styles.downloadBox}>
|
|
<div className={styles.downloadBoxTextBox}>
|
|
<div className={styles.downloadBoxTitle}>
|
|
{METHODOLOGY_COPY.DOWNLOAD_PACKAGE.TITLE}
|
|
</div>
|
|
<div className={styles.downloadBoxText}>
|
|
{METHODOLOGY_COPY.DOWNLOAD_PACKAGE.DESCRIPTION}
|
|
{' '}
|
|
<span>
|
|
{METHODOLOGY_COPY.DOWNLOAD_PACKAGE.LAST_UPDATED}
|
|
</span>
|
|
</div>
|
|
<div className={styles.downloadBoxButtonContainer}>
|
|
<a data-cy={'download-link'} href={METHODOLOGY_COPY.DOWNLOAD_ZIP_URL}>
|
|
<Button className={styles.downloadBoxButton} type="button">
|
|
<div>
|
|
<img src={downloadIcon} alt={'download icon for download package'}/>
|
|
</div>
|
|
<div className={styles.downloadPacketText}>
|
|
{METHODOLOGY_COPY.DOWNLOAD_PACKAGE.BUTTON_TEXT}
|
|
</div>
|
|
</Button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Grid>
|
|
);
|
|
};
|
|
|
|
export default DownloadPacket;
|