import { Check } from "lucide-react" import { Button } from "@/components/ui/button" const plans = [ { name: "Basic", price: "$9", features: ["5 team members", "10 projects", "Basic analytics", "Email support"], }, { name: "Pro", price: "$29", features: ["Unlimited team members", "Unlimited projects", "Advanced analytics", "Priority support"], }, { name: "Enterprise", price: "Custom", features: ["Custom features", "Dedicated account manager", "On-premise deployment", "24/7 phone support"], }, ] export default function Pricing() { return (

Choose Your Plan

{plans.map((plan, index) => (

{plan.name}

{plan.price} /month

    {plan.features.map((feature, featureIndex) => (
  • {feature}
  • ))}
))}
) }