import React from "react"; const PricingContent = [ { pcakName: "Basic", bgColor: "#ffecec", price: "Free", packDetails: "TAKE GREAT NOTES", features: [ "Sync up to 2 devices", "Find notes fast with search", "Access web tags", "Clip web pages", "25MB maximum note", "60MB monthly upload limit", ], animationDelay: "", activeItem: "", }, { pcakName: "Reguler", bgColor: "#E3F8EF", price: "8.99", packDetails: "BE MORE PRODUCTIVE", features: [ "Sync up to 2 devices", "Find notes fast with search", "Access web tags", "Clip web pages", "Apply rich formatting", "Clip web pages", "25MB maximum note size", "Access notes offline", "10GBmonthly upload limit", "Annotate PDFs", ], animationDelay: "100", activeItem: "active", }, { pcakName: " Business", bgColor: "#fbf3e5", price: "17.99", packDetails: "Get more with team", features: [ "Sync up to 2 devices", "Find notes fast with search", "Access web tags", "Apply rich formatting", "Clip web pages", "25MB maximum note", "Access notes offline", "18GB monthly upload limit", ], animationDelay: "200", activeItem: "", }, ]; const PricingMonthly = () => { return (
{PricingContent.map((val, i) => (
{val.pcakName}
{val.price}
{val.packDetails}
    {val.features.map((list, i) => (
  • {list}
  • ))}
Try it Free
No card required, cancel any time
{/* /.pr-table-wrapper */}
))}
); }; export default PricingMonthly;