1 2 3 4 5 6 7 8 9 10 11 12
"use client" import { BillingView } from "@/components/views/billing" export default function BillingPage() { return ( <div className="py-6 max-w-2xl"> <h1 className="text-2xl font-bold text-foreground mb-6"> Billing & Subscription </h1> <BillingView /> </div> ) }