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"; const FeaturesData = [ { id: "1", subTitle: "Due Tasks", title: "41", iconName: "ri-pie-chart-2-line", badgeProgress: "5.80%", badgeClass: "successBadge", badgeIcon: "ri-arrow-up-s-fill", growthText: "Completed: 13 Projects this month", }, { id: "2", subTitle: "Active Projects", title: "65", iconName: "ri-briefcase-line", badgeProgress: "1.04%", badgeClass: "dangerBadge", badgeIcon: "ri-arrow-down-s-fill", growthText: "Projects this month", }, { id: "3", subTitle: "Total Hours", title: "599", iconName: "ri-time-line", badgeProgress: "5.80%", badgeClass: "successBadge", badgeIcon: "ri-arrow-up-s-fill", growthText: "Projects this month", }, { id: "4", subTitle: "Total Projects", title: "24k", iconName: "ri-shield-check-line", badgeProgress: "7.80%", badgeClass: "successBadge", badgeIcon: "ri-arrow-up-s-fill", growthText: "Completed: 13 Projects this month", }, ]; const Features = () => { return ( <> {FeaturesData.map((feature) => ( {feature.subTitle} {feature.title} {feature.badgeProgress} {feature.icon} {feature.growthText} ))} ); }; export default Features;