diff --git a/app/billing/page.tsx b/app/billing/page.tsx new file mode 100644 index 0000000..f98b413 --- /dev/null +++ b/app/billing/page.tsx @@ -0,0 +1,34 @@ +import { generateMetadata } from "@/src/lib/seo/metadata" +import { breadcrumbListSchema } from "@/src/lib/seo/json-ld" + +export const metadata = generateMetadata({ + title: "Billing", + description: "View billing history, manage payments, and track usage costs for your utility meters on EquipChain.", + path: "/billing", +}) + +export default function BillingPage() { + const jsonLd = breadcrumbListSchema([ + { name: "Home", path: "/" }, + { name: "Billing", path: "/billing" }, + ]) + + return ( + <> +