import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; export function PricingSection() { const plans = [ { name: "Basic", target: "Great for private individuals", features: [ "1 User", "Unlimited Projects", "Download prototypes", "1 Gb workspace", ], price: "Free", isPopular: false, }, { name: "Premium", target: "14 days free period", features: [ "15 Users", "Unlimited Projects", "Download prototypes", "15 Gb workspace", ], price: "$ 59 /mo", isPopular: true, }, { name: "Unlimited", target: "Great for private individuals", features: [ "100 Users", "Unlimited Projects", "Download prototypes", "100 Gb workspace", ], price: "$ 199 /mo", isPopular: false, }, ]; return (
{plans.map((plan, i) => (
{plan.isPopular && (
Popular
)}

{plan.name}

{plan.target}

    {plan.features.map((feat, j) => (
  • {feat}
  • ))}
{plan.price}
Get started
))}
); }