mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-09-30 00:43:18 -07:00
RFI link to contact page (#1528)
* Add RFI to contact page * Move to a 8:4 column layout for the contact page - add margin above footer - update snapshots * Add period to copy * add download attribute to <a> tag - fix local cypress tess
This commit is contained in:
parent
952f97a20d
commit
69edbe520e
14 changed files with 181 additions and 16 deletions
|
@ -6,6 +6,7 @@ import J40MainGridContainer from '../components/J40MainGridContainer';
|
|||
import Layout from '../components/layout';
|
||||
import LinkTypeWrapper from '../components/LinkTypeWrapper';
|
||||
import PublicEngageButton from '../components/PublicEngageButton';
|
||||
import RequestForInfo from '../components/RequestForInfo';
|
||||
|
||||
import * as CONTACT_COPY from '../data/copy/contact';
|
||||
import * as COMMON_COPY from '../data/copy/common';
|
||||
|
@ -26,8 +27,10 @@ const ContactPage = ({location}: IContactPageProps) => {
|
|||
<PublicEngageButton />
|
||||
</section>
|
||||
|
||||
<Grid row>
|
||||
<Grid col>
|
||||
<Grid row gap={6}>
|
||||
|
||||
{/* First column */}
|
||||
<Grid desktop={{col: 8}} col={12}>
|
||||
<h2>
|
||||
{intl.formatMessage(CONTACT_COPY.PAGE_INTRO.PAGE_SUB_HEADING)}
|
||||
</h2>
|
||||
|
@ -38,12 +41,12 @@ const ContactPage = ({location}: IContactPageProps) => {
|
|||
defaultMessage={CONTACT_COPY.CONTACT_VIA_EMAIL.DEFAULT_MESSAGE}
|
||||
values={{
|
||||
general_email_address:
|
||||
<LinkTypeWrapper
|
||||
linkText= {COMMON_COPY.FEEDBACK_EMAIL}
|
||||
internal= {false}
|
||||
url= {`mailto:${COMMON_COPY.FEEDBACK_EMAIL}`}
|
||||
openUrlNewTab= {true}
|
||||
/>,
|
||||
<LinkTypeWrapper
|
||||
linkText= {COMMON_COPY.FEEDBACK_EMAIL}
|
||||
internal= {false}
|
||||
url= {`mailto:${COMMON_COPY.FEEDBACK_EMAIL}`}
|
||||
openUrlNewTab= {true}
|
||||
/>,
|
||||
}}/>
|
||||
</p>
|
||||
<h3>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.TITLE}</h3>
|
||||
|
@ -51,6 +54,11 @@ const ContactPage = ({location}: IContactPageProps) => {
|
|||
<p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH2}</p>
|
||||
<p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH3}</p>
|
||||
</Grid>
|
||||
|
||||
{/* Second Column */}
|
||||
<Grid desktop={{col: 4}} col={12}>
|
||||
<RequestForInfo />
|
||||
</Grid>
|
||||
</Grid>
|
||||
</J40MainGridContainer>
|
||||
</Layout>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue