Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

103 lignes
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. <div align="center" style={{marginTop:"-20px"}}>
  28. <br></br>
  29. <div align="center" style={{marginTop:"-20px"}}>
  30. <img className={classes.imgCard} src="https://1.bp.blogspot.com/-GTTVvnJ9x0c/Wn70CJxGoYI/AAAAAAAACRY/GSv1ehPFOPQZcvOfiALy_p7Xa7GOBRHKgCLcBGAs/s320/TB.pn" style={{width:"350px"}}/>
  31. <img className={classes.imgCard} src="https://belimotoryuk.com/wp-content/uploads/2017/03/cropped-logo-yamaha.png" style={{width:"350px"}}/>
  32. </div>
  33. </div><br/>
  34. <div align="center">
  35. <List className={classes.list}>
  36. <ListItem className={classes.inlineBlock}>
  37. <a href="/yamaha/home" className={classes.block} > Home </a>
  38. </ListItem>
  39. <ListItem className={classes.inlineBlock}>
  40. <a href="/yamaha/product/product" className={classes.block}> Motor </a>
  41. </ListItem>
  42. <ListItem className={classes.inlineBlock}>
  43. <a href="/yamaha/product/ygp" className={classes.block}> YGP </a>
  44. </ListItem>
  45. <ListItem className={classes.inlineBlock}>
  46. <a href="/yamaha/product/yamalube" className={classes.block}> Yamalube </a>
  47. </ListItem>
  48. <ListItem className={classes.inlineBlock}>
  49. <a href="/yamaha/product/apparel" className={classes.block}> Apparel </a>
  50. </ListItem>
  51. <ListItem className={classes.inlineBlock}>
  52. <a href="/yamaha/product/helmet" className={classes.block}> Helmet </a>
  53. </ListItem>
  54. <ListItem className={classes.inlineBlock}>
  55. <a href="/yamaha/product/accessories" className={classes.block}> Accessories </a>
  56. </ListItem>
  57. <ListItem className={classes.inlineBlock}>
  58. <a href="/yamaha/product/service" className={classes.block}> Service </a>
  59. </ListItem>
  60. <ListItem className={classes.inlineBlock}>
  61. <a href="/yamaha/product/dealer" className={classes.block}> Dealer </a>
  62. </ListItem>
  63. <ListItem className={classes.inlineBlock}>
  64. <a href="/yamaha/latestsnews" className={classes.block}> Latest News </a>
  65. </ListItem>
  66. <ListItem className={classes.inlineBlock}>
  67. <a href="/yamaha/carrer" className={classes.block}> Carrer </a>
  68. </ListItem>
  69. <ListItem className={classes.inlineBlock}>
  70. <a href="/yamaha/about_us/aboutus" className={classes.block}> About Us </a>
  71. </ListItem>
  72. </List>
  73. </div>
  74. <div align="center">
  75. <List className={classes.list}>
  76. <ListItem className={classes.inlineBlock}>
  77. <a href="#" target="_blank" className={classes.block} >Facebook</a>
  78. </ListItem>
  79. <ListItem className={classes.inlineBlock}>
  80. <a href="#" target="_blank" className={classes.block}>Instagram</a>
  81. </ListItem>
  82. <ListItem className={classes.inlineBlock}>
  83. <a href="#" target="_blank" className={classes.block}>Twitter</a>
  84. </ListItem>
  85. <ListItem className={classes.inlineBlock}>
  86. <a href="#" target="_blank" className={classes.block}>Youtube</a>
  87. </ListItem>
  88. </List>
  89. </div><br/><br/>
  90. <div align="center">
  91. &copy; {1900 + new Date().getYear()} , All Right Reserved{" "} by{" "} @Thamrin Brothers
  92. </div><br/><br/>
  93. </GridItem>
  94. );
  95. }
  96. Footer.propTypes = {
  97. whiteFont: PropTypes.bool
  98. };