-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathPricing.jsx
More file actions
54 lines (49 loc) · 1.63 KB
/
Pricing.jsx
File metadata and controls
54 lines (49 loc) · 1.63 KB
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
import React from 'react'
import './Pricing.css'
const Pricing = () => {
return (
<>
<h1 className='pricingbox__title'>Our Plans</h1>
<section className="pricingbox">
<div className="priceplans">
<h3>Basic</h3>
<h5>Unlimited usage and <br /> advanced features</h5>
<p>$10 <span>/month</span></p>
<button className="btn">subscribe</button>
<ul>
<li>Unlimited Static Codes</li>
<li>Save QR Codes</li>
<li>Unlimited Dynamic Codes</li>
<li>Download Codes in JPEG</li>
</ul>
</div>
<div className="priceplans">
<h3>Starters</h3>
<h5>Unlimited usage and <br /> advanced features</h5>
<p>$15 <span>/month</span></p>
<button className="btn btn-secondary">subscribe</button>
<ul>
<li>10 Dynamic Codes</li>
<li>Advanced Code Types</li>
<li>Scan Analysis</li>
<li>High Quality Downloads</li>
</ul>
</div>
<div className="priceplans">
<h3>Professionals</h3>
<h5>Unlimited usage and <br /> advanced features</h5>
<p>$85 <span>/month</span></p>
<button className="btn ">subscribe</button>
<ul>
<li>Unlimited Dynamic Codes</li>
<li>Account Management</li>
<li>Create folders</li>
<li>Generates Lables</li>
</ul>
</div>
</section>
<br /><br /><br /><br /><br /><br />
</>
)
}
export default Pricing