"use client" import { Button } from "@/registry/new-york-v4/ui/button" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/registry/new-york-v4/ui/card" import { Input } from "@/registry/new-york-v4/ui/input" import { Label } from "@/registry/new-york-v4/ui/label" import { RadioGroup, RadioGroupItem, } from "@/registry/new-york-v4/ui/radio-group" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/registry/new-york-v4/ui/select" const plans = [ { id: "starter", name: "Starter Plan", description: "Perfect for small businesses.", price: "$10", }, { id: "pro", name: "Pro Plan", description: "Advanced features with more storage.", price: "$20", }, ] as const export function CardsPaymentMethod() { return ( Payment Method Add a new payment method to your account.
Plan

Select the plan that best fits your needs.

{plans.map((plan) => ( ))}
) }