"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 { Checkbox } from "@/registry/new-york-v4/ui/checkbox" 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 { Textarea } from "@/registry/new-york-v4/ui/textarea" const plans = [ { id: "starter", name: "Starter Plan", description: "Perfect 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.
Plan

Select the plan that best fits your needs.

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