import React from "react"; import Image from "next/image"; const PricingContent = [ { packName: "Starter", price: "18", packageFor: "Small office / Home office", icon: "38", billCycle: "Billed per agent", preFeatures: [ "60-day chat history", "Basic widget customization", "Ticketing system", "Data security", ], }, { packName: "Team", price: "29", packageFor: "Small office / Home office", icon: "40", billCycle: "Billed per agent", preFeatures: [ "60-day chat history", "Basic widget customization", "Ticketing system", "Data security", ], }, { packName: "Business", price: "50", packageFor: "Small office / Home office", icon: "41", billCycle: "Billed per agent", preFeatures: [ "60-day chat history", "Basic widget customization", "Ticketing system", "Data security", ], }, ]; const PricingMonthly = () => { return (
{PricingContent.map((val, i) => (
{val.packName}
${val.price}.99
{val.packageFor}
icon
Billed per agent
    {val.preFeatures.map((list, i) => (
  • {list}
  • ))}
Choose Plan
Get your 30 day free trial
{/* /.pr-table-wrapper */}
))}
); }; export default PricingMonthly;