您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

96 行
3.5 KiB

  1. /*eslint-disable*/
  2. import React from "react";
  3. // @material-ui/core components
  4. import { makeStyles } from "@material-ui/core/styles";
  5. // @material-ui/icons
  6. import GridContainer from "components/Grid/GridContainer.js";
  7. import GridItem from "components/Grid/GridItem.js";
  8. import Button from "components/CustomButtons/Button.js";
  9. // core components
  10. import styles from "assets/jss/nextjs-material-kit/pages/componentsSections/downloadStyle.js";
  11. const useStyles = makeStyles(styles);
  12. export default function SectionDownload() {
  13. const classes = useStyles();
  14. return (
  15. <div className={classes.section}>
  16. <div className={classes.container}>
  17. <GridContainer className={classes.textCenter} justify="center">
  18. <GridItem xs={12} sm={12} md={8}>
  19. <h2>Our Service</h2>
  20. {/* <h4>
  21. Cause if you do, it can be yours for FREE. Hit the buttons below
  22. to navigate to our website where you can find the kit. We also
  23. have the Bootstrap 4 version on plain HTML. Start a new project or
  24. give an old Bootstrap project a new look!
  25. </h4> */}
  26. </GridItem>
  27. <GridItem xs={12} sm={8} md={6}>
  28. <Button
  29. color="primary"
  30. size="lg"
  31. href="https://www.creative-tim.com/product/nextjs-material-kit?ref=njsmk-download-section"
  32. target="_blank"
  33. >
  34. Service
  35. </Button>
  36. </GridItem>
  37. </GridContainer>
  38. <br />
  39. <br />
  40. {/* <GridContainer className={classes.textCenter} justify="center">
  41. <GridItem xs={12} sm={12} md={8}>
  42. <h2>Want more?</h2>
  43. <h4>
  44. We've just launched{" "}
  45. <a href="#pablo" onClick={e => e.preventDefault()}>
  46. NextJS Material Kit PRO{" "}
  47. </a>
  48. .It has a huge number of components, sections and example pages.
  49. Start Your Development With A Badass Material-UI and NexJS Kit
  50. inspired by Material Design.
  51. </h4>
  52. </GridItem>
  53. <GridItem xs={12} sm={8} md={10}>
  54. <Button
  55. color="rose"
  56. size="lg"
  57. href="https://www.creative-tim.com/product/nextjs-material-kit-pro?ref=njsmk-download-section"
  58. target="_blank"
  59. >
  60. NextJS Material Kit PRO
  61. </Button>
  62. <Button
  63. color="rose"
  64. size="lg"
  65. href="https://www.creative-tim.com/product/material-kit-pro-react?ref=njsmk-download-section"
  66. target="_blank"
  67. >
  68. Material Kit PRO React
  69. </Button>
  70. </GridItem>
  71. </GridContainer>
  72. <div className={classes.textCenter + " " + classes.sharingArea}>
  73. <GridContainer justify="center">
  74. <h3>Thank you for supporting us!</h3>
  75. </GridContainer>
  76. <Button color="twitter">
  77. <i className={classes.socials + " fab fa-twitter"} /> Tweet
  78. </Button>
  79. <Button color="facebook">
  80. <i className={classes.socials + " fab fa-facebook-square"} /> Share
  81. </Button>
  82. <Button color="google">
  83. <i className={classes.socials + " fab fa-google-plus-g"} />
  84. Share
  85. </Button>
  86. <Button color="github">
  87. <i className={classes.socials + " fab fa-github"} /> Star
  88. </Button>
  89. </div> */}
  90. </div>
  91. </div>
  92. );
  93. }