import React from "react"; const PricingContent = [ { packName: "Single", packDetails: "Analyze performance and do more with your data", price: "23.00", durationNumber: "Per monthy", facility: "Biller Yearly", features: [ "Unlimited Email", "5gb Hosting", "2 website 3 sub domain", "Email & Live chat", "Backling", "Discount Programe", ], animationDelay: "", activeClass: "", }, { packName: "Team", packDetails: "Analyze performance and do more with your data", price: "47.00", durationNumber: "Per monthy", facility: "Biller Yearly", features: [ "Unlimited Email", "5gb Hosting", "2 website 3 sub domain", "Email & Live chat", "Backling", "Discount Programe", ], animationDelay: "100", activeClass: "active most-popular", }, { packName: "Business", packDetails: "Analyze performance and do more with your data", price: "89.00", durationNumber: "Per monthy", facility: "Biller Yearly", features: [ "Unlimited Email", "5gb Hosting", "2 website 3 sub domain", "Email & Live chat", "Backling", "Discount Programe", ], animationDelay: "200", activeClass: "", }, ]; const Pricing = () => { return (
{PricingContent.map((val, i) => (
{val.packName}
{val.packDetails}
$ {val.price}
{val.durationNumber} {val.facility}
{/* /.top-banner */} Start 30 days free trial
    {val.features.map((list, i) => (
  • {list}
  • ))}
No card required, cancel any time
{/* /.pr-table-wrapper */}
))}
); }; export default Pricing;