import React from "react"; import Link from "next/link"; import Image from "next/image"; const PricingContent = [ { plan: "SILVER PLAN", price: "97", info: "Great for Individial Person", featureList: [ { hintsText: "Send documents for eSigning", iconYesNo: "154", }, { hintsText: "Multiple User", iconYesNo: "154", }, { hintsText: "Refund", iconYesNo: "154", }, { hintsText: "Bulk invite to sign", iconYesNo: "155", }, { hintsText: "Live Chat", iconYesNo: "155", }, { hintsText: "Send invite via Link", iconYesNo: "155", }, ], }, { plan: "GOLD PLAN", price: "199", info: "Great for Startup", featureList: [ { hintsText: "Send documents for eSigning", iconYesNo: "154", }, { hintsText: "Multiple User", iconYesNo: "154", }, { hintsText: "Refund", iconYesNo: "155", }, { hintsText: "Bulk invite to sign", iconYesNo: "155", }, { hintsText: "Live Chat", iconYesNo: "155", }, { hintsText: "Send invite via Link", iconYesNo: "155", }, ], }, { plan: "BUSINESS PLAN", price: "239", info: "Great for Large Business", featureList: [ { hintsText: "Send documents for eSigning", iconYesNo: "155", }, { hintsText: "Multiple User", iconYesNo: "155", }, { hintsText: "Refund", iconYesNo: "155", }, { hintsText: "Bulk invite to sign", iconYesNo: "155", }, { hintsText: "Live Chat", iconYesNo: "155", }, { hintsText: "Send invite via Link", iconYesNo: "155", }, ], }, ]; const PricingEight = () => { return (