import React from "react"; import Image from "next/image"; const FeatureContent = [ { icon: "78", title: "Easy Customizable", subTitle: `Duis aute irure dolor reprehen derit in voluptat velit.`, hoverText: `Bring all team slit managment task quis togather.`, }, { icon: "79", title: "Modern & Slick", subTitle: `Duis aute irure dolor reprehen derit in voluptat velit.`, hoverText: ` Bring all team slit managment task quis togather.`, }, { icon: "80", title: "Trusted & Secure", subTitle: `Duis aute irure dolor reprehen derit in voluptat velit.`, hoverText: ` Bring all team slit managment task quis togather.`, }, ]; const FancyFeatureTwelve = () => { return (
{FeatureContent.map((val, i) => (
icon

{val.title}

{val.subTitle}

{val.hoverText}
{/* /.block-style-seventeen */}
))}
// End .row ); }; export default FancyFeatureTwelve;