// Tenant entitlements — placeholder. Lists the metered allowances // (AI tokens, storage GB, etc.) granted to the active tenant and how // much of each has been consumed. Data source not wired yet. import { Gauge } from "lucide-react" import { AppShell } from "~/components/layout/app-shell" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "~/components/ui/card" export default function EntitlementsRoute() { return (

Entitlements

Metered allowances for this tenant — included units and usage to date per meter.

Coming soon Personal-cloud entitlements are tracked per account today. A tenant-rollup endpoint is pending.
) }