import React from "react"; import Image from "next/image"; const featuresContent = [ { icon: "144", title: "Contracts", desc: "Simplify the process to create proposals.", delayAnimation: "", }, { icon: "145", title: "Proposal", desc: "Create interactive, error-free quotes.", delayAnimation: "100", }, { icon: "146", title: "eSignature", desc: "Create interactive, error-free quotes.", delayAnimation: "200", }, { icon: "147", title: "Collect Doc", desc: "Create interactive, error-free quotes.", delayAnimation: "300", }, ]; const FancyFeatureTewentySeven = () => { return (
{featuresContent.map((val, i) => (
icon

{val.title}

{val.desc}

{/* /.block-style-twentySeven */}
))}
); }; export default FancyFeatureTewentySeven;