Skip to content

Commit

Permalink
Merge pull request #1562 from hackforla/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
sydneywalcoff authored Sep 24, 2024
2 parents 3af82f0 + 6258290 commit f17066d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"section7Dropdown3Title": "Can law enforcement get a search warrant to access my data on this site?",
"section7Dropdown3Paragraph": "No. Even if law enforcement were to search this site for your data, there would be no data to find. We do not store or save any of your data, ever. There would be nothing to find.\n\nOnce your data has left our site via download, it is your responsibility to keep your data secure.",
"sectionTitle8": "Partnership opportunities",
"sectionParagraph8": "Expunge Assist is currently looking for partner organizations to refine and tailor the\nproduct to the needs of their organizations. Contact us to learn more."
"sectionParagraph8": "Expunge Assist is currently looking for partner organizations to refine and tailor the product to the needs of their organizations. Contact us to learn more."
},
"before_you_begin_page": {
"header": "Before you begin",
Expand Down
10 changes: 8 additions & 2 deletions products/statement-generator/src/pages/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const useStyles = makeStyles(({ globals, palette, breakpoints, spacing }) =>
opportunitySection: {
backgroundColor: `${palette.primary.lighter}`,
width: '100%',
padding: '100px 80px',
padding: '100px 140px',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
Expand All @@ -134,6 +134,12 @@ const useStyles = makeStyles(({ globals, palette, breakpoints, spacing }) =>
width: '170px',
margin: `${spacing(2)}px auto 0px auto`,
},
'& h3': {
fontSize: '20pt',
},
[breakpoints.down(breakpoints.values.md)]: {
padding: '48px',
},
[breakpoints.down(breakpoints.values.sm)]: {
padding: '24px',
},
Expand Down Expand Up @@ -431,7 +437,7 @@ function LandingSection8() {
return (
<section className={`${classes.section}`} style={{ marginBottom: '24px' }}>
<div className={classes.opportunitySection}>
<h2>{t('landing_page.sectionTitle8')}</h2>
<h3>{t('landing_page.sectionTitle8')}</h3>
<p>{t('landing_page.sectionParagraph8')}</p>
<ButtonComponent
onClick={() => handleContactUs()}
Expand Down

0 comments on commit f17066d

Please sign in to comment.