"use client" import { Button } from "@/registry/new-york-v4/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/registry/new-york-v4/ui/card" import { Checkbox } from "@/registry/new-york-v4/ui/checkbox" import { Field, FieldContent, FieldDescription, FieldGroup, FieldLabel, FieldLegend, FieldSet, FieldTitle, } from "@/registry/new-york-v4/ui/field" import { Input } from "@/registry/new-york-v4/ui/input" import { RadioGroup, RadioGroupItem, } from "@/registry/new-york-v4/ui/radio-group" import { Textarea } from "@/registry/new-york-v4/ui/textarea" const plans = [ { id: "starter", name: "Starter Plan", description: "For small businesses.", price: "$10", }, { id: "pro", name: "Pro Plan", description: "More features and storage.", price: "$20", }, ] as const export function CardsForms() { return ( Upgrade your Subscription You are currently on the free plan. Upgrade to the pro plan to get access to all features.
Name Email Card Number Expiry Date CVC
Plan Select the plan that best fits your needs. {plans.map((plan) => ( {plan.name} {plan.description} ))}
Notes