"use client"; import { Check } from "lucide-react"; export default function BillingPage() { const plans = [ { name: "Free", price: "$0", description: "Perfect for getting started", features: [ "10 messages/month", "Access to featured characters", "Basic support", ], current: true, }, { name: "Pro", price: "$9.99", period: "/month", description: "For serious enthusiasts", features: [ "Unlimited messages", "Priority character creation", "Custom characters", "Ad-free experience", "Priority support", ], current: false, }, { name: "Premium", price: "$29.99", period: "/month", description: "Maximum experience", features: [ "Everything in Pro", "Advanced AI models", "Character voice customization", "Private character storage", "White-label options", "24/7 VIP support", ], current: false, }, ]; return (
Manage your subscription
CURRENT PLAN
You're currently on the free plan
{plan.description}
{/* Price */}| Date | Description | Amount | Status |
|---|---|---|---|
| {row.date} | {row.desc} | {row.amount} | {row.status} |