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: "Completed Projects", title: "24k", image: "/images/users-icon.png", }, { id: "2", subTitle: "Pending Projects", title: "17", image: "/images/graph-icon.png", }, { id: "3", subTitle: "Total Revenue", title: "16.2M", image: "/images/work-icon.png", } ]; const Features = () => { return ( <> {FeaturesData.map((feature) => ( Icon {feature.subTitle} {feature.title} ))} ); }; export default Features;