import React from "react"; import Image from "next/image"; const FancyBlock = () => { const fancyBlockCotent = [ { id: 1, icon: "203", title: "Free Shipping", text: `Simplify the process to create proposals.`, delayAnim: "0", }, { id: 2, icon: "204", title: "Free Return", text: `Return money within 7 days only!`, delayAnim: "100", }, { id: 3, icon: "205", title: "Secured Payment", text: `We ensure secure payment with PEV`, delayAnim: "200", }, { id: 4, icon: "206", title: "100% Safe", text: `We provide world best security system`, delayAnim: "300", }, ]; return ( <> {fancyBlockCotent.map((item) => (
icon

{item.title}

{item.text}

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