import { pricingPlans } from "@/data/pricing"; import React from "react"; export default function Pricing({ parentClass = "section-pricing style-1 tf-spacing-6", }) { return (

Choose A Plan, Start Now.

Whether you’re just getting started with rapid testing or scaling across the
organization, we’ve got you covered

{pricingPlans.map((plan, index) => (
{plan.title}

{plan.description}

{plan.price}

/month
    {plan.features.map((feature, i) => (
  • {feature}
  • ))}
Get Started Now
))}
); }