From 6be83f6c7cfd6298bd4d40737dca88519b9e8c60 Mon Sep 17 00:00:00 2001 From: Pritesh Date: Wed, 3 Jun 2026 04:27:05 +0530 Subject: [PATCH] feat(lead-gen): add Credits & Billing page Co-Authored-By: Claude Opus 4.8 (1M context) --- ui/src/app/billing/page.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ui/src/app/billing/page.tsx diff --git a/ui/src/app/billing/page.tsx b/ui/src/app/billing/page.tsx new file mode 100644 index 00000000..422e019e --- /dev/null +++ b/ui/src/app/billing/page.tsx @@ -0,0 +1,17 @@ +"use client"; + +import { DograhCreditsCard } from "@/components/billing/DograhCreditsCard"; + +export default function BillingPage() { + return ( +
+
+

Credits & Billing

+

+ Track your Dograh model credits and request top-ups. +

+
+ +
+ ); +}