import { pricingPlans } from "@/data/pricing"; import React from "react"; import Link from "next/link"; import AnimatedText from "@/components/common/AnimatedText"; import Image from "next/image"; export default function Pricing({ shadow = false }) { return ( <>
pricing Plans

{pricingPlans.map((plan, index) => (
{plan.active && (
img
)}
img

{plan.title}

{plan.price}/{plan.frequency}

    {plan.features.map((feature, i) => (
  • {typeof feature === "string" ? feature : feature.feature}
  • ))}
choose plan
))}
); }