File size: 2,762 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
import { Drawer } from "@material-ui/core";
import React, { useState } from "react";
import Checkout from "./Checkout";
import "./Home.css";
import { sizing } from "@material-ui/core";
import Product from "./Product";
const Home = () => {
const [drawer, setDrawer] = useState(false);
return (
<div className="home">
<div className="home__container">
<img
src="https://images-eu.ssl-images-amazon.com/images/G/31/AmazonVideo/2020/X-site/Multititle/Aug/1500x600_Hero-Tall_np._CB404803728_.jpg"
className="home__image"
/>
<div className="home__row" style={{ marginTop: "300px" }}>
<Product
id="12849"
title="The Most helpful book in the world, this book gives you basic knowledge about life (ofcourse if you do not know)."
price={29.99}
image={`https://m.media-amazon.com/images/I/410b3ttpfAL.__AC_SY200_.jpg`}
rating={5}
/>
<Product
id="3534345"
title="The Most helpful book in the world, this book gives you basic knowledge about life (ofcourse if you do not know)."
price={29.99}
image={`https://m.media-amazon.com/images/I/410b3ttpfAL.__AC_SY200_.jpg`}
rating={5}
/>
</div>
<div className="home__row">
<Product
id="24242"
title="The Most helpful book in the world, this book gives you basic knowledge about life (ofcourse if you do not know)."
price={29.99}
image={`https://m.media-amazon.com/images/I/410b3ttpfAL.__AC_SY200_.jpg`}
rating={5}
/>
<Product
id="23553647"
title="The Most helpful book in the world, this book gives you basic knowledge about life (ofcourse if you do not know)."
price={29.99}
image={`https://m.media-amazon.com/images/I/410b3ttpfAL.__AC_SY200_.jpg`}
rating={5}
/>
<Product
id="359473"
title="The Most helpful book in the world, this book gives you basic knowledge about life (ofcourse if you do not know)."
price={29.99}
image={`https://m.media-amazon.com/images/I/410b3ttpfAL.__AC_SY200_.jpg`}
rating={5}
/>
</div>
<div className="home__row">
<Product
id="4839274"
title="The Most helpful book in the world, this book gives you basic knowledge about life (ofcourse if you do not know)."
price={29.99}
image={`https://m.media-amazon.com/images/I/410b3ttpfAL.__AC_SY200_.jpg`}
rating={5}
/>
</div>
</div>
</div>
);
};
export default Home;
|