Files
bifrost/ui/app/workspace/custom-pricing/overrides/pricingOverridesEmptyState.tsx
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

42 lines
1.7 KiB
TypeScript

import { Button } from "@/components/ui/button";
import { ArrowUpRight, SlidersHorizontal } from "lucide-react";
const PRICING_OVERRIDES_DOCS_URL = "https://docs.getbifrost.ai/features/governance/custom-pricing";
interface PricingOverridesEmptyStateProps {
onCreateClick: () => void;
}
export function PricingOverridesEmptyState({ onCreateClick }: PricingOverridesEmptyStateProps) {
return (
<div
className="flex min-h-[80vh] w-full flex-col items-center justify-center gap-4 py-16 text-center"
data-testid="pricing-overrides-empty-state"
>
<div className="text-muted-foreground">
<SlidersHorizontal className="h-[5.5rem] w-[5.5rem]" strokeWidth={1} />
</div>
<div className="flex flex-col gap-1">
<h1 className="text-muted-foreground text-xl font-medium">Pricing overrides customize cost tracking per scope</h1>
<div className="text-muted-foreground mx-auto mt-2 max-w-[600px] text-sm font-normal">
Define custom per-token prices for specific providers, keys, or virtual keys to accurately reflect your negotiated rates.
</div>
<div className="mx-auto mt-6 flex flex-row flex-wrap items-center justify-center gap-2">
<Button
variant="outline"
aria-label="Read more about pricing overrides (opens in new tab)"
data-testid="pricing-overrides-button-read-more"
onClick={() => {
window.open(`${PRICING_OVERRIDES_DOCS_URL}?utm_source=bfd`, "_blank", "noopener,noreferrer");
}}
>
Read more <ArrowUpRight className="text-muted-foreground h-3 w-3" />
</Button>
<Button aria-label="Create your first pricing override" data-testid="pricing-override-create-btn" onClick={onCreateClick}>
Create Override
</Button>
</div>
</div>
</div>
);
}