-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1393 from hackforla/1347-thematic-coloring-of-con…
…tent-pages-7-v2-contact #7 v2 Contact
- Loading branch information
Showing
4 changed files
with
129 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,37 @@ | ||
import React from 'react'; | ||
import { | ||
Grid, | ||
} from '@material-ui/core'; | ||
import Grid from '@material-ui/core/Grid'; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import Typography from '@material-ui/core/Typography'; | ||
import sharedLayout from '@theme/layout'; | ||
|
||
const ContactIntro = () => ( | ||
<Grid container alignItems="center" justify="center" direction="column"> | ||
<Grid item style={{ width: '45%' }}> | ||
<h1 style={{ textAlign: 'center' }}> | ||
{'Don\'t See What You Need?'} | ||
</h1> | ||
<p> | ||
We want to build a tool that works for you. We are open to suggestions and | ||
feedback and would love the opportunity to get connected. Feel free to input | ||
your information in the contact form below and we will be sure to get back to | ||
you within 2-3 business days. Thank you! | ||
</p> | ||
const useStyles = makeStyles(theme => ({ | ||
contentTitle: { | ||
fontWeight: theme.typography.fontWeightMedium, | ||
}, | ||
})); | ||
|
||
const ContactIntro = () => { | ||
const classes = { ...useStyles(), ...sharedLayout() }; | ||
|
||
return ( | ||
<Grid container alignItems="center" justify="center" direction="column"> | ||
<Grid item> | ||
<div align="center"> | ||
<Typography variant="h6" className={classes.contentTitle}> | ||
{'Don\'t See What You Need?'} | ||
</Typography> | ||
</div> | ||
<div className={classes.marginTopSmall}> | ||
<Typography variant="body1"> | ||
We want to build a tool that works for you. We are open to suggestions and | ||
feedback and would love the opportunity to get connected. Feel free to input | ||
your information in the contact form below and we will be sure to get back to | ||
you within 2-3 business days. Thank you! | ||
</Typography> | ||
</div> | ||
</Grid> | ||
</Grid> | ||
</Grid> | ||
); | ||
); | ||
}; | ||
|
||
export default ContactIntro; |