import Image from "next/image"; import React from "react"; const FeatureContent = [ { icon: "132", title: "Core PHP", subTitle: `Elit esse cillum dolore eu fugiat nulla pariatur`, bgColor: "#FFEBDB", delayAnimation: "", }, { icon: "133", title: "Easy Customizable", subTitle: `quis nostrud exerct ullamo ea nisi ut aliqu dolor`, bgColor: "#E0F8F8", delayAnimation: "200", }, { icon: "134", title: "Fast Support", subTitle: `Duis aute irure dolor reprehen derit in voluptat velit.`, bgColor: "#F7EDFF", delayAnimation: "400", }, ]; const FancyFeatureTewentyThree = () => { return ( <> {FeatureContent.map((val, i) => (
))} > ); }; export default FancyFeatureTewentyThree;