Upgrade.jsx
4.15 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
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
/*!
=========================================================
* Light Bootstrap Dashboard React - v1.3.0
=========================================================
* Product Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-react
* Copyright 2019 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/light-bootstrap-dashboard-react/blob/master/LICENSE.md)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
import React, { Component } from "react";
import { Table, Grid, Row, Col } from "react-bootstrap";
import Card from "components/Card/Card";
import Button from "components/CustomButton/CustomButton";
class Icons extends Component {
render() {
return (
<div className="content">
<Grid fluid>
<Row>
<Col md={8} mdOffset={2}>
<Card
hCenter
title="Light Bootstrap Dashboard PRO React"
category="Are you looking for more components? Please check our Premium Version of Light Bootstrap Dashboard React."
ctTableResponsive
ctTableFullWidth
ctTableUpgrade
content={
<Table>
<thead>
<tr>
<th />
<th className="text-center">Free</th>
<th className="text-center">PRO</th>
</tr>
</thead>
<tbody>
<tr>
<td>Components</td>
<td>30</td>
<td>60</td>
</tr>
<tr>
<td>Plugins</td>
<td>3</td>
<td>13</td>
</tr>
<tr>
<td>Example Pages</td>
<td>7</td>
<td>24</td>
</tr>
<tr>
<td>Login/Register/Lock Pages</td>
<td>
<i className="fa fa-times text-danger" />
</td>
<td>
<i className="fa fa-check text-success" />
</td>
</tr>
<tr>
<td>Premium Support</td>
<td>
<i className="fa fa-times text-danger" />
</td>
<td>
<i className="fa fa-check text-success" />
</td>
</tr>
<tr>
<td />
<td>Free</td>
<td>Just $49</td>
</tr>
<tr>
<td />
<td>
<Button
href="#"
round
fill
disabled
bsStyle="default"
>
Current Version
</Button>
</td>
<td>
<Button
target="_blank"
href="http://www.creative-tim.com/product/light-bootstrap-dashboard-pro-react/?ref=lbdr-upgrade-page"
round
fill
bsStyle="info"
>
Upgrade to PRO
</Button>
</td>
</tr>
</tbody>
</Table>
}
/>
</Col>
</Row>
</Grid>
</div>
);
}
}
export default Icons;