feat(lead-gen): add Credits & Billing page

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Pritesh 2026-06-03 04:27:05 +05:30
parent e247757348
commit 6be83f6c7c

View file

@ -0,0 +1,17 @@
"use client";
import { DograhCreditsCard } from "@/components/billing/DograhCreditsCard";
export default function BillingPage() {
return (
<div className="container mx-auto px-4 py-6">
<div className="mb-6">
<h1 className="text-3xl font-bold">Credits &amp; Billing</h1>
<p className="text-muted-foreground">
Track your Dograh model credits and request top-ups.
</p>
</div>
<DograhCreditsCard />
</div>
);
}