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

104 行
4.9 KiB

  1. import React from "react";
  2. import PropTypes from "prop-types";
  3. import classNames from "classnames";
  4. import { List, ListItem } from "@material-ui/core";
  5. import { makeStyles } from "@material-ui/core/styles";
  6. import Favorite from "@material-ui/icons/Favorite";
  7. import GridContainer from "components/Grid/GridContainer.js";
  8. import Grid from '@material-ui/core/Grid';
  9. import GridItem from "components/Grid/GridItem.js";
  10. import Paper from '@material-ui/core/Paper';
  11. import Card from "components/Card/Card.js";
  12. import styles from "assets/jss/nextjs-material-kit/components/footerStyle.js";
  13. const useStyles = makeStyles(styles);
  14. export default function Footer(props) {
  15. const classes = useStyles();
  16. const { whiteFont } = props;
  17. const footerClasses = classNames({
  18. [classes.footer]: true,
  19. [classes.footerWhiteFont]: whiteFont
  20. });
  21. const aClasses = classNames({
  22. [classes.a]: true,
  23. [classes.footerWhiteFont]: whiteFont
  24. });
  25. return (
  26. <GridItem xs={12}>
  27. <br/><br/>
  28. <div align="center" style={{marginTop:"-20px"}}>
  29. <br></br>
  30. <div align="center" style={{marginTop:"-20px"}}>
  31. <img className={classes.imgCard} src="https://1.bp.blogspot.com/-GTTVvnJ9x0c/Wn70CJxGoYI/AAAAAAAACRY/GSv1ehPFOPQZcvOfiALy_p7Xa7GOBRHKgCLcBGAs/s320/TB.pn" style={{width:"350px"}}/>
  32. <img className={classes.imgCard} src="https://belimotoryuk.com/wp-content/uploads/2017/03/cropped-logo-yamaha.png" style={{width:"350px"}}/>
  33. </div>
  34. </div><br/>
  35. <div align="center">
  36. <List className={classes.list}>
  37. <ListItem className={classes.inlineBlock}>
  38. <a href="/yamaha/home" className={classes.block} > Home </a>
  39. </ListItem>
  40. <ListItem className={classes.inlineBlock}>
  41. <a href="/yamaha/product/product" className={classes.block}> Motor </a>
  42. </ListItem>
  43. <ListItem className={classes.inlineBlock}>
  44. <a href="/yamaha/product/ygp" className={classes.block}> YGP </a>
  45. </ListItem>
  46. <ListItem className={classes.inlineBlock}>
  47. <a href="/yamaha/product/yamalube" className={classes.block}> Yamalube </a>
  48. </ListItem>
  49. <ListItem className={classes.inlineBlock}>
  50. <a href="/yamaha/product/apparel" className={classes.block}> Apparel </a>
  51. </ListItem>
  52. <ListItem className={classes.inlineBlock}>
  53. <a href="/yamaha/product/helmet" className={classes.block}> Helmet </a>
  54. </ListItem>
  55. <ListItem className={classes.inlineBlock}>
  56. <a href="/yamaha/product/accessories" className={classes.block}> Accessories </a>
  57. </ListItem>
  58. <ListItem className={classes.inlineBlock}>
  59. <a href="/yamaha/product/service" className={classes.block}> Service </a>
  60. </ListItem>
  61. <ListItem className={classes.inlineBlock}>
  62. <a href="/yamaha/product/dealer" className={classes.block}> Dealer </a>
  63. </ListItem>
  64. <ListItem className={classes.inlineBlock}>
  65. <a href="/yamaha/latestsnews" className={classes.block}> Latest News </a>
  66. </ListItem>
  67. <ListItem className={classes.inlineBlock}>
  68. <a href="/yamaha/carrer" className={classes.block}> Carrer </a>
  69. </ListItem>
  70. <ListItem className={classes.inlineBlock}>
  71. <a href="/yamaha/about_us/aboutus" className={classes.block}> About Us </a>
  72. </ListItem>
  73. </List>
  74. </div>
  75. <div align="center">
  76. <List className={classes.list}>
  77. <ListItem className={classes.inlineBlock}>
  78. <a href="#" target="_blank" className={classes.block} >Facebook</a>
  79. </ListItem>
  80. <ListItem className={classes.inlineBlock}>
  81. <a href="#" target="_blank" className={classes.block}>Instagram</a>
  82. </ListItem>
  83. <ListItem className={classes.inlineBlock}>
  84. <a href="#" target="_blank" className={classes.block}>Twitter</a>
  85. </ListItem>
  86. <ListItem className={classes.inlineBlock}>
  87. <a href="#" target="_blank" className={classes.block}>Youtube</a>
  88. </ListItem>
  89. </List>
  90. </div><br/><br/>
  91. <div align="center">
  92. &copy; {1900 + new Date().getYear()} , All Right Reserved{" "} by{" "} @Thamrin Brothers
  93. </div><br/><br/>
  94. </GridItem>
  95. );
  96. }
  97. Footer.propTypes = {
  98. whiteFont: PropTypes.bool
  99. };