File size: 6,036 Bytes
1e92f2d |
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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
/*!
=========================================================
* Argon Dashboard React - v1.2.4
=========================================================
* Product Page: https://www.creative-tim.com/product/argon-dashboard-react
* Copyright 2024 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/argon-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.
*/
// reactstrap components
import { Card, CardBody, CardTitle, Container, Row, Col } from "reactstrap";
const Header = () => {
return (
<>
<div className="header bg-gradient-info pb-8 pt-5 pt-md-8">
<Container fluid>
<div className="header-body">
{/* Card stats */}
<Row>
<Col lg="6" xl="3">
<Card className="card-stats mb-4 mb-xl-0">
<CardBody>
<Row>
<div className="col">
<CardTitle
tag="h5"
className="text-uppercase text-muted mb-0"
>
Traffic
</CardTitle>
<span className="h2 font-weight-bold mb-0">
350,897
</span>
</div>
<Col className="col-auto">
<div className="icon icon-shape bg-danger text-white rounded-circle shadow">
<i className="fas fa-chart-bar" />
</div>
</Col>
</Row>
<p className="mt-3 mb-0 text-muted text-sm">
<span className="text-success mr-2">
<i className="fa fa-arrow-up" /> 3.48%
</span>{" "}
<span className="text-nowrap">Since last month</span>
</p>
</CardBody>
</Card>
</Col>
<Col lg="6" xl="3">
<Card className="card-stats mb-4 mb-xl-0">
<CardBody>
<Row>
<div className="col">
<CardTitle
tag="h5"
className="text-uppercase text-muted mb-0"
>
New users
</CardTitle>
<span className="h2 font-weight-bold mb-0">2,356</span>
</div>
<Col className="col-auto">
<div className="icon icon-shape bg-warning text-white rounded-circle shadow">
<i className="fas fa-chart-pie" />
</div>
</Col>
</Row>
<p className="mt-3 mb-0 text-muted text-sm">
<span className="text-danger mr-2">
<i className="fas fa-arrow-down" /> 3.48%
</span>{" "}
<span className="text-nowrap">Since last week</span>
</p>
</CardBody>
</Card>
</Col>
<Col lg="6" xl="3">
<Card className="card-stats mb-4 mb-xl-0">
<CardBody>
<Row>
<div className="col">
<CardTitle
tag="h5"
className="text-uppercase text-muted mb-0"
>
Sales
</CardTitle>
<span className="h2 font-weight-bold mb-0">924</span>
</div>
<Col className="col-auto">
<div className="icon icon-shape bg-yellow text-white rounded-circle shadow">
<i className="fas fa-users" />
</div>
</Col>
</Row>
<p className="mt-3 mb-0 text-muted text-sm">
<span className="text-warning mr-2">
<i className="fas fa-arrow-down" /> 1.10%
</span>{" "}
<span className="text-nowrap">Since yesterday</span>
</p>
</CardBody>
</Card>
</Col>
<Col lg="6" xl="3">
<Card className="card-stats mb-4 mb-xl-0">
<CardBody>
<Row>
<div className="col">
<CardTitle
tag="h5"
className="text-uppercase text-muted mb-0"
>
Performance
</CardTitle>
<span className="h2 font-weight-bold mb-0">49,65%</span>
</div>
<Col className="col-auto">
<div className="icon icon-shape bg-info text-white rounded-circle shadow">
<i className="fas fa-percent" />
</div>
</Col>
</Row>
<p className="mt-3 mb-0 text-muted text-sm">
<span className="text-success mr-2">
<i className="fas fa-arrow-up" /> 12%
</span>{" "}
<span className="text-nowrap">Since last month</span>
</p>
</CardBody>
</Card>
</Col>
</Row>
</div>
</Container>
</div>
</>
);
};
export default Header;
|