forked from vaibhavsharma420/HacktoberFest2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListView
124 lines (107 loc) · 2.66 KB
/
ListView
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import React from 'react'
import styled from 'styled-components';
import FormPrice from '../helpers/FormPrice';
import { NavLink } from 'react-router-dom';
import { Button } from './Button';
const ListView = ({products}) => {
return (
<Wrapper className='section'>
<div className='container grid'>
{
products.map((curElem)=>{
const {id, name, image, price, description}= curElem;
return (<div className='card grid grid-two-column'>
<figure>
<img src={image} alt={name}/>
</figure>
<div className='card-data'>
<h3>{name}</h3>
<p><FormPrice price={price}/> </p>
<p>{description.slice(0,90)}...</p>
<NavLink to={`/SingleProduct/${id}`} className='btn-main'>
<Button className='btn'>Read More</Button>
</NavLink>
</div>
</div>)
})
}
</div>
</Wrapper>
);
};
const Wrapper = styled.section`
padding: 9rem 0;
.container {
max-width: 120rem;
}
.grid {
gap: 3.2rem;
}
figure {
width: auto;
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
transition: all 0.5s linear;
&::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
transition: all 0.2s linear;
cursor: pointer;
}
&:hover::after {
width: 100%;
}
&:hover img {
transform: scale(1.2);
}
img {
max-width: 90%;
margin-top: 1.5rem;
height: 20rem;
transition: all 0.2s linear;
}
}
.card {
border: 0.1rem solid rgb(170 170 170 / 40%);
.card-data {
padding: 0 2rem;
}
h3 {
margin: 2rem 0;
font-weight: 300;
font-size: 2.4rem;
text-transform: capitalize;
}
.btn {
margin: 2rem 0;
background-color: rgb(0 0 0 / 0%);
border: 0.1rem solid rgb(98 84 243);
display: flex;
justify-content: center;
align-items: center;
color: rgb(98 84 243);
&:hover {
background-color: rgb(98 84 243);
}
&:hover a {
color: #fff;
}
a {
color: rgb(98 84 243);
font-size: 1.4rem;
}
}
.btn-main .btn:hover {
color: #fff;
}
}
`;
export default ListView;