Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #1562

Merged
merged 7 commits into from
Sep 24, 2024
Merged

Dev #1562

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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