You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

72 lines
2.3 KiB

  1. import React from "react";
  2. // @material-ui/core components
  3. import { makeStyles } from "@material-ui/core/styles";
  4. // @material-ui/icons
  5. // core components
  6. import GridContainer from "components/Grid/GridContainer.js";
  7. import GridItem from "components/Grid/GridItem.js";
  8. import CustomInput from "components/CustomInput/CustomInput.js";
  9. import Button from "components/CustomButtons/Button.js";
  10. import styles from "assets/jss/nextjs-material-kit/pages/landingPageSections/workStyle.js";
  11. const useStyles = makeStyles(styles);
  12. export default function WorkSection() {
  13. const classes = useStyles();
  14. return (
  15. <div className={classes.section}>
  16. <GridContainer justify="center">
  17. <GridItem cs={12} sm={12} md={8}>
  18. <h2 className={classes.title}>Work with us</h2>
  19. <h4 className={classes.description}>
  20. Divide details about your product or agency work into parts. Write a
  21. few lines about each one and contact us about any further
  22. collaboration. We will responde get back to you in a couple of
  23. hours.
  24. </h4>
  25. <form>
  26. <GridContainer>
  27. <GridItem xs={12} sm={12} md={6}>
  28. <CustomInput
  29. labelText="Your Name"
  30. id="name"
  31. formControlProps={{
  32. fullWidth: true
  33. }}
  34. />
  35. </GridItem>
  36. <GridItem xs={12} sm={12} md={6}>
  37. <CustomInput
  38. labelText="Your Email"
  39. id="email"
  40. formControlProps={{
  41. fullWidth: true
  42. }}
  43. />
  44. </GridItem>
  45. <CustomInput
  46. labelText="Your Message"
  47. id="message"
  48. formControlProps={{
  49. fullWidth: true,
  50. className: classes.textArea
  51. }}
  52. inputProps={{
  53. multiline: true,
  54. rows: 5
  55. }}
  56. />
  57. <GridItem xs={12} sm={12} md={4} className={classes.textCenter}>
  58. <Button color="primary">Send Message</Button>
  59. </GridItem>
  60. </GridContainer>
  61. </form>
  62. </GridItem>
  63. </GridContainer>
  64. </div>
  65. );
  66. }