import { SubscriptionCard } from '@/components/billing/subscription-card' import { PaymentMethodList } from '@/components/billing/payment-method-list' import { InvoiceTable } from '@/components/billing/invoice-table' import { mockSubscription, mockPaymentMethods, mockInvoices } from '@/lib/mock-data' export default function BillingPage() { return (
{/* Header */}

Billing & Invoices

Manage your subscription and payment methods

{/* Billing Content */}
{/* Left Column - Subscription & Payment Methods */}
{/* Right Column - Invoice History */}
) }