import React from "react"; import Image from "next/image"; const FeatureContent = [ { icon: "60", meta: "Smart popups", subTitle: `Create customized popups and show the message at the lorem`, }, { icon: "61", meta: "Embeded Forms", subTitle: `Collect website leads with embedded forms and integrate easily.`, }, { icon: "62", meta: "Autoresponder", subTitle: `Send welcome email to your new subscribers with a code.`, }, ]; const FeaturesEight = () => { return (
{FeatureContent.map((val, i) => (
icon
{val.meta}

{val.subTitle}

))}
); }; export default FeaturesEight;