import { Button } from "@/components/ui/button"; import { WalletCards } from "lucide-react"; import { ArrowUpRight } from "lucide-react"; const CUSTOMERS_DOCS_URL = "https://docs.getbifrost.ai/features/governance/virtual-keys#customers"; interface CustomersEmptyStateProps { onAddClick: () => void; canCreate?: boolean; } export function CustomersEmptyState({ onAddClick, canCreate = true }: CustomersEmptyStateProps) { return (

Customers have their own teams, budgets, and access controls

Create customer accounts to manage multi-tenant usage, assign teams, and set spending and rate limits per customer.
); }