-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.js
64 lines (59 loc) · 2.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import React from 'react'
import './Home.css'
import Product from './Product'
function Home() {
return (
<div className='home'>
<div className='home__container'>
<img
className='home__image'
src='https://images-eu.ssl-images-amazon.com/images/G/31/img22/Wireless/devjyoti/GW/Uber/Nov/D103625178_DesktopTallHero_3000x1200._CB574597993_.jpg'
alt=''
/>
<div className='home__row'>
<Product
title='Chandelier Ceiling Lamp 300mm Glass Crystal Big Size Jhumar Lamp fo Living Room/Hall'
price={2344}
rating={4}
image='https://m.media-amazon.com/images/I/A1DJoJwO2cL._AC._SR360,460.jpg'
/>
<Product
title='Chandelier Ceiling Lamp 300mm Glass Crystal Big Size Jhumar Lamp fo Living Room/Hall'
price={2344}
rating={4}
image='https://m.media-amazon.com/images/I/A1DJoJwO2cL._AC._SR360,460.jpg'
/>
</div>
<div className='home__row'>
<Product
title='Chandelier Ceiling Lamp 300mm Glass Crystal Big Size Jhumar Lamp fo Living Room/Hall'
price={2344}
rating={4}
image='https://m.media-amazon.com/images/I/A1DJoJwO2cL._AC._SR360,460.jpg'
/>
<Product
title='Chandelier Ceiling Lamp 300mm Glass Crystal Big Size Jhumar Lamp fo Living Room/Hall'
price={2344}
rating={4}
image='https://m.media-amazon.com/images/I/A1DJoJwO2cL._AC._SR360,460.jpg'
/>
<Product
title='Chandelier Ceiling Lamp 300mm Glass Crystal Big Size Jhumar Lamp fo Living Room/Hall'
price={2344}
rating={4}
image='https://m.media-amazon.com/images/I/A1DJoJwO2cL._AC._SR360,460.jpg'
/>
</div>
<div className='home__row'>
<Product
title='Chandelier Ceiling Lamp 300mm Glass Crystal Big Size Jhumar Lamp fo Living Room/Hall'
price={2344}
rating={4}
image='https://m.media-amazon.com/images/I/A1DJoJwO2cL._AC._SR360,460.jpg'
/>
</div>
</div>
</div>
);
}
export default Home