mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-13 08:15:21 +02:00
feat(lead-gen): add Credits & Billing page
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e247757348
commit
6be83f6c7c
1 changed files with 17 additions and 0 deletions
17
ui/src/app/billing/page.tsx
Normal file
17
ui/src/app/billing/page.tsx
Normal 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 & Billing</h1>
|
||||
<p className="text-muted-foreground">
|
||||
Track your Dograh model credits and request top-ups.
|
||||
</p>
|
||||
</div>
|
||||
<DograhCreditsCard />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue