import React from "react"; import Image from "next/image"; const featuresContent = [ { icon: "163", title: "Easy Customize", desc: `Keep a track on real-time performance while analyzing the success of your mail campaigns.`, delayAnimation: "", }, { icon: "164", title: "100+ Template", desc: `Keep a track on real-time performance while analyzing the success of your mail campaigns.`, delayAnimation: "100", }, { icon: "165", title: "Clean & Unique", desc: `Keep a track on real-time performance while analyzing the success of your mail campaigns.`, delayAnimation: "200", }, ]; const FancyFeatureThirtyOne = () => { return (
{featuresContent.map((item, i) => (
icon

{item.title}

{item.desc}

{/* */}
))}
); }; export default FancyFeatureThirtyOne;