import React from "react"; import Link from "next/link"; import Image from "next/image"; const FeaturesContent = [ { img: "55", title: "Personal", desc: ` With deski docs, you can write, edit, and collaborate wherever you are. For Free.`, routePath: "/", dataDelay: "100", }, { img: "57", title: "Business", desc: `The deski Docs you love with added security and control for teams.`, routePath: "/", dataDelay: "200", }, ]; const FancyFeatureEight = () => { return (
{FeaturesContent.map((val, i) => (
icon
{val.title}

{val.desc}

{" "} icon
{/* /.block-style-ten */}
))}
); }; export default FancyFeatureEight;