121 lines
3.1 KiB
JavaScript
121 lines
3.1 KiB
JavaScript
import React from "react";
|
|
import Grid from "@mui/material/Grid";
|
|
import Box from "@mui/material/Box";
|
|
import Card from "@mui/material/Card";
|
|
import Typography from "@mui/material/Typography";
|
|
import TrendingUpIcon from "@mui/icons-material/TrendingUp";
|
|
import TrendingDownIcon from "@mui/icons-material/TrendingDown";
|
|
|
|
const FeaturesData = [
|
|
{
|
|
id: "1",
|
|
amount: "$25,890",
|
|
title: "Total Invested",
|
|
image: "/images/icon5.png",
|
|
icon: <TrendingUpIcon />,
|
|
growth: "+1.3%",
|
|
growthText: "Up from past week",
|
|
color: "successColor",
|
|
},
|
|
{
|
|
id: "2",
|
|
amount: "$10,324",
|
|
title: "Total Changed",
|
|
image: "/images/icon6.png",
|
|
icon: <TrendingDownIcon />,
|
|
growth: "-2.5%",
|
|
growthText: "Up from past week",
|
|
color: "dangerColor",
|
|
},
|
|
{
|
|
id: "3",
|
|
amount: "$100",
|
|
title: "Day Changed",
|
|
image: "/images/icon7.png",
|
|
icon: <TrendingUpIcon />,
|
|
growth: "+0.4%",
|
|
growthText: "Up from past week",
|
|
color: "successColor",
|
|
},
|
|
];
|
|
|
|
const Features = () => {
|
|
return (
|
|
<>
|
|
<Grid
|
|
container
|
|
justifyContent="center"
|
|
rowSpacing={1}
|
|
columnSpacing={{ xs: 1, sm: 2, md: 2 }}
|
|
>
|
|
{FeaturesData.map((feature) => (
|
|
<Grid item xs={12} sm={6} md={4} lg={4} key={feature.id}>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px 20px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
justifyContent: "space-between",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Box>
|
|
<Typography variant="h4" fontSize={16} fontWeight="500">
|
|
{feature.title}
|
|
</Typography>
|
|
</Box>
|
|
|
|
<Box>
|
|
<img src={feature.image} alt="Graph" />
|
|
</Box>
|
|
</Box>
|
|
|
|
<Typography
|
|
variant="h1"
|
|
color="primary"
|
|
sx={{
|
|
fontSize: 28,
|
|
fontWeight: 700,
|
|
mb: "20px",
|
|
textAlign: "center",
|
|
}}
|
|
>
|
|
{feature.amount}
|
|
</Typography>
|
|
|
|
<Box>
|
|
<Typography
|
|
sx={{
|
|
fontSize: "13px",
|
|
fontWeight: "500",
|
|
display: "flex",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<span>{feature.growthText}</span>
|
|
<span
|
|
style={{ display: "flex", alignItems: "center" }}
|
|
className={feature.color}
|
|
>
|
|
{feature.icon}{" "}
|
|
<span style={{ marginLeft: "5px" }}>{feature.growth}</span>
|
|
</span>
|
|
</Typography>
|
|
</Box>
|
|
</Card>
|
|
</Grid>
|
|
))}
|
|
</Grid>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Features;
|