// next imports import Image from "next/image"; const CloudPricing = () => { const pricingData = [ { title: "Cloud Free", description: "Free Forever", details: [ "Unlimited Members", "1000 issues", "5MB per issue file uploads", "Community Support" ], button: "Get started with Free" }, { title: "Cloud Pro", description: "$5 per user / month", details: [ "Everything in free, plus", "Unlimited issues", "Unlimited file uploads", "Priority Support" ], button: "Get started with Cloud Pro" } ]; return (
{pricingData.map((data: any, index: number) => (
{data.title}
{data.description}
{data.details.map((_: any, index: number) => (
user
{_}
))}
))}
); }; export default CloudPricing;