-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCard.jsx
More file actions
31 lines (29 loc) · 982 Bytes
/
Card.jsx
File metadata and controls
31 lines (29 loc) · 982 Bytes
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
import { Bookmark } from 'lucide-react'
const Card = (props) => {
return (
<div className="card">
<div>
<div className="top">
<img src={props.brandLogo} alt="nachioooooo" />
<button>Save <Bookmark size={10} /> </button>
</div>
<div className="center">
<h3>{props.company} <span>{props.datePosted}</span></h3>
<h2>{props.post}</h2>
<div className='tag'>
<h4>{props.tag1}</h4>
<h4>{props.tag2}</h4>
</div>
</div>
</div>
<div className="bottom">
<div>
<h3>{props.pay}</h3>
<p>Mumbai, India</p>
</div>
<button>Apply Now</button>
</div>
</div>
)
}
export default Card