-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetstarted.jsx
36 lines (35 loc) · 1.23 KB
/
Getstarted.jsx
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
// import React from 'react'
import { Link } from 'react-router-dom'
import './getstarted.css'
const Getstarted = () => {
return (
<div className='parent'>
<h1 id="title">
Join as a Client or a Freelancer or a Customer
</h1>
<div className="container">
<div className="business cards">
<img src="" alt="image" className='i-card' />
<input type="checkbox" name="" id="" />
<h2 className="ss">Im a client, hiring for a project</h2>
</div>
<div className="worker cards">
<img src="" alt="image2" className='i-card' />
<input type="checkbox" name="" id="" />
<h2 className="ss">
Im an experienced person looking for a job.
</h2>
</div>
<div className="customer cards">
<img src="" alt="image3" className='i-card'/>
<input type="checkbox" name="" id="" />
<h2 className="ss">
Im a customer looking for assests.
</h2>
</div>
</div>
<Link to='/' id='home'>Home</Link>
</div>
)
}
export default Getstarted