Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

95 Zeilen
3.0 KiB

  1. /*eslint-disable*/
  2. import React from "react";
  3. // nodejs library to set properties for components
  4. import PropTypes from "prop-types";
  5. // nodejs library that concatenates classes
  6. import classNames from "classnames";
  7. // material-ui core components
  8. import { List, ListItem } from "@material-ui/core";
  9. import { makeStyles } from "@material-ui/core/styles";
  10. // @material-ui/icons
  11. import Favorite from "@material-ui/icons/Favorite";
  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. <footer className={footerClasses}>
  27. <div className={classes.container}>
  28. <div className={classes.left}>
  29. <List className={classes.list}>
  30. {/* <ListItem className={classes.inlineBlock}>
  31. <img className={classes.imgCard} src="https://1.bp.blogspot.com/-J9AsxdwrF-Y/Wn70KyBApaI/AAAAAAAACRo/LTy3zrALzhckryd9QPi_KuVyWvwFMZyMQCLcBGAs/s640/TG.png" width="250px"/>
  32. </ListItem> */}
  33. <ListItem className={classes.inlineBlock}>
  34. <a
  35. href="https://www.creative-tim.com/?ref=njsmk-footer"
  36. className={classes.block}
  37. target="_blank"
  38. >
  39. Home
  40. </a>
  41. </ListItem>
  42. <ListItem className={classes.inlineBlock}>
  43. <a
  44. href="https://www.creative-tim.com/presentation?ref=njsmk-footer"
  45. className={classes.block}
  46. target="_blank"
  47. >
  48. Product
  49. </a>
  50. </ListItem>
  51. <ListItem className={classes.inlineBlock}>
  52. <a
  53. href="http://blog.creative-tim.com/?ref=njsmk-footer"
  54. className={classes.block}
  55. target="_blank"
  56. >
  57. Latest News
  58. </a>
  59. </ListItem>
  60. <ListItem className={classes.inlineBlock}>
  61. <a
  62. href="https://www.creative-tim.com/license?ref=njsmk-footer"
  63. className={classes.block}
  64. target="_blank"
  65. >
  66. Carrer
  67. </a>
  68. </ListItem>
  69. <ListItem className={classes.inlineBlock}>
  70. <a
  71. href="https://www.creative-tim.com/license?ref=njsmk-footer"
  72. className={classes.block}
  73. target="_blank"
  74. >
  75. About Us
  76. </a>
  77. </ListItem>
  78. </List>
  79. </div>
  80. <div className={classes.right}>
  81. &copy; {1900 + new Date().getYear()} , All Right Reserved{" "} by{" "} @Thamrin Group Company
  82. </div>
  83. </div>
  84. </footer>
  85. );
  86. }
  87. Footer.propTypes = {
  88. whiteFont: PropTypes.bool
  89. };