"use client"; import React from 'react'; import Link from 'next/link'; import GsapReveal from '@/components/common/GsapReveal'; import { pricingPlans } from '@/utils/data'; const Pricing = () => { return (
Pricing Plans

Flexible Pricing for Your
Business Needs

{pricingPlans.map((plan, index) => (
{plan.isPopular && (
Popular
)}

{plan.plan}

${plan.price}

/{plan.period}
    {plan.features.map((feature, i) => (
  • {feature}
  • ))}
Choose Plan
))}
); }; export default Pricing;