Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

105 linhas
5.1 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. // import StyleYamaha from "components/Footer/footersosmed.css";
  14. const useStyles = makeStyles(styles);
  15. export default function Footer(props) {
  16. const classes = useStyles();
  17. const { whiteFont } = props;
  18. const footerClasses = classNames({
  19. [classes.footer]: true,
  20. [classes.footerWhiteFont]: whiteFont
  21. });
  22. const aClasses = classNames({
  23. [classes.a]: true,
  24. [classes.footerWhiteFont]: whiteFont
  25. });
  26. return (
  27. <GridItem xs={12}>
  28. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
  29. <br/><br/>
  30. {/* <div align="center" style={{marginTop:"-20px"}}>
  31. <br></br>
  32. <div align="center" style={{marginTop:"-20px"}}>
  33. <img className={classes.imgCard} src="https://1.bp.blogspot.com/-GTTVvnJ9x0c/Wn70CJxGoYI/AAAAAAAACRY/GSv1ehPFOPQZcvOfiALy_p7Xa7GOBRHKgCLcBGAs/s320/TB.pn" style={{width:"350px"}}/>
  34. <img className={classes.imgCard} src="https://belimotoryuk.com/wp-content/uploads/2017/03/cropped-logo-yamaha.png" style={{width:"350px"}}/>
  35. </div>
  36. </div><br/> */}
  37. <div align="center">
  38. <List className={classes.list}>
  39. <ListItem className={classes.inlineBlock}>
  40. <a href="/yamaha/home" className={classes.block} > Home </a>
  41. </ListItem>
  42. <ListItem className={classes.inlineBlock}>
  43. <a href="/yamaha/product/product" className={classes.block}> Motor </a>
  44. </ListItem>
  45. <ListItem className={classes.inlineBlock}>
  46. <a href="/yamaha/product/ygp" className={classes.block}> YGP </a>
  47. </ListItem>
  48. <ListItem className={classes.inlineBlock}>
  49. <a href="/yamaha/product/yamalube" className={classes.block}> Yamalube </a>
  50. </ListItem>
  51. <ListItem className={classes.inlineBlock}>
  52. <a href="/yamaha/product/apparel" className={classes.block}> Apparel </a>
  53. </ListItem>
  54. <ListItem className={classes.inlineBlock}>
  55. <a href="/yamaha/product/helmet" className={classes.block}> Helmet </a>
  56. </ListItem>
  57. <ListItem className={classes.inlineBlock}>
  58. <a href="/yamaha/product/accessories" className={classes.block}> Accessories </a>
  59. </ListItem>
  60. <ListItem className={classes.inlineBlock}>
  61. <a href="/yamaha/product/service" className={classes.block}> Service </a>
  62. </ListItem>
  63. <ListItem className={classes.inlineBlock}>
  64. <a href="/yamaha/product/dealer" className={classes.block}> Dealer </a>
  65. </ListItem>
  66. <ListItem className={classes.inlineBlock}>
  67. <a href="/yamaha/latestsnews" className={classes.block}> Latest News </a>
  68. </ListItem>
  69. <ListItem className={classes.inlineBlock}>
  70. <a href="/yamaha/carrer" className={classes.block}> Carrer </a>
  71. </ListItem>
  72. <ListItem className={classes.inlineBlock}>
  73. <a href="/yamaha/about_us/aboutus" className={classes.block}> About Us </a>
  74. </ListItem>
  75. </List>
  76. </div>
  77. <div align="center">
  78. <List className={classes.list}>
  79. <ListItem className={classes.inlineBlock} style={{padding:"10px"}}>
  80. <a href="#" class="fa fa-facebook"></a>
  81. </ListItem>
  82. <ListItem className={classes.inlineBlock} style={{padding:"10px"}}>
  83. <a href="#" class="fa fa-instagram"></a>
  84. </ListItem>
  85. <ListItem className={classes.inlineBlock} style={{padding:"10px"}}>
  86. <a href="#" class="fa fa-twitter"></a>
  87. </ListItem>
  88. <ListItem className={classes.inlineBlock} style={{padding:"10px"}}>
  89. <a href="#" class="fa fa-youtube"></a>
  90. </ListItem>
  91. </List>
  92. </div><br/><br/>
  93. <div align="center">
  94. &copy; {1900 + new Date().getYear()} , All Right Reserved{" "} by{" "} @Thamrin Brothers
  95. </div><br/><br/>
  96. </GridItem>
  97. );
  98. }
  99. Footer.propTypes = {
  100. whiteFont: PropTypes.bool
  101. };