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.
 
 

68 line
2.6 KiB

  1. import React from "react";
  2. // @material-ui/core components
  3. import { makeStyles } from "@material-ui/core/styles";
  4. // @material-ui/icons
  5. import Chat from "@material-ui/icons/Chat";
  6. import VerifiedUser from "@material-ui/icons/VerifiedUser";
  7. import Fingerprint from "@material-ui/icons/Fingerprint";
  8. // core components
  9. import GridContainer from "components/Grid/GridContainer.js";
  10. import GridItem from "components/Grid/GridItem.js";
  11. import InfoArea from "components/InfoArea/InfoArea.js";
  12. import styles from "assets/jss/nextjs-material-kit/pages/landingPageSections/productStyle.js";
  13. const useStyles = makeStyles(styles);
  14. export default function ProductSection() {
  15. const classes = useStyles();
  16. return (
  17. <div className={classes.section}>
  18. <GridContainer justify="center">
  19. <GridItem xs={12} sm={12} md={8}>
  20. <h2 className={classes.title}>Let{"'"}s talk product</h2>
  21. <h5 className={classes.description}>
  22. This is the paragraph where you can write more details about your
  23. product. Keep you user engaged by providing meaningful information.
  24. Remember that by this time, the user is curious, otherwise he wouldn
  25. {"'"}t scroll to get here. Add a button if you want the user to see
  26. more.
  27. </h5>
  28. </GridItem>
  29. </GridContainer>
  30. <div>
  31. <GridContainer>
  32. <GridItem xs={12} sm={12} md={4}>
  33. <InfoArea
  34. title="Free Chat"
  35. description="Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough."
  36. icon={Chat}
  37. iconColor="info"
  38. vertical
  39. />
  40. </GridItem>
  41. <GridItem xs={12} sm={12} md={4}>
  42. <InfoArea
  43. title="Verified Users"
  44. description="Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough."
  45. icon={VerifiedUser}
  46. iconColor="success"
  47. vertical
  48. />
  49. </GridItem>
  50. <GridItem xs={12} sm={12} md={4}>
  51. <InfoArea
  52. title="Fingerprint"
  53. description="Divide details about your product or agency work into parts. Write a few lines about each one. A paragraph describing a feature will be enough."
  54. icon={Fingerprint}
  55. iconColor="danger"
  56. vertical
  57. />
  58. </GridItem>
  59. </GridContainer>
  60. </div>
  61. </div>
  62. );
  63. }