-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.js
45 lines (32 loc) · 1.09 KB
/
Home.js
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
import React from 'react';
import blackgradient from './img/BLACKGRADIENT.png';
import './home.css';
import Product from './Product';
import DOUGH from './img/IMAGE1.png';
import BABY from './img/BABY.png';
function Home() {
return (
<div className='home'>
<div className="home_container">
<img className='home_img' src={ blackgradient } />
<div className="homerow1">
< Product title={"NFT Example"} price={1} image={ DOUGH } rating={3} />
< Product title={"NFT Example"} price={1} image={ BABY } rating={3} />
< Product title={"NFT Example"} price={1} image={ DOUGH } rating={3} />
< Product title={"NFT Example"} price={1} image={ DOUGH } rating={3} />
</div>
<div className="homerow">
< Product title={"NFT Example"} price={1} image={ DOUGH } rating={3}/>
< Product title={"NFT "} price={15} image={ BABY } rating={5}/>
{/*product*/}
< Product title={"NFT Example"} price={1} image={ DOUGH } rating={3} />
< Product title={"NFT "} price={15} image={ BABY } rating={5} />
</div>
<div className="homerow">
{/*product*/}
</div>
</div>
</div>
);
}
export default Home;