You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 line
885 B

  1. import React from "react";
  2. // @material-ui/core components
  3. import List from "@material-ui/core/List";
  4. import ListItem from "@material-ui/core/ListItem";
  5. import ListItemText from "@material-ui/core/ListItemText";
  6. // @material-ui icons
  7. // core components
  8. import Card from "components/Card/Card.js";
  9. import CardHeader from "components/Card/CardHeader.js";
  10. import cardBlog5 from "assets/img/examples/studio-1.jpg";
  11. export default function Motor() {
  12. return (
  13. <Card style={{ width: "20rem" }}>
  14. <CardHeader color="info">All New Nmax</CardHeader>
  15. <List component="nav">
  16. <ListItem>
  17. <img
  18. style={{ height: "180px", width: "100%", display: "block" }}
  19. src="https://www.yamaha-motor.co.id/uploads/products/2020020510350637523I93808.png"
  20. alt="Card-img-cap"
  21. />
  22. </ListItem>
  23. </List>
  24. </Card>
  25. );
  26. }