aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(navigation)/settings/billing/page.tsx
blob: d260f20e981756b64ec4ca04c328d08bee9d44b1 (plain) (blame)
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>
	)
}