"use client"; import { Activity, ArrowLeftRight, Coins, Gauge, Radio } from "lucide-react"; // Static preview of the AI Gateway concept. No real proxy yet — this // page is the contract we show clients while the gateway is being // built. When the runtime exists, replace the four feature tiles with // live config + metrics. export default function GatewayPage() { return (
Gateway

AI Gateway

A proxy in front of your agents’ LLM calls. Enforce per-agent budgets, log every prompt and completion for replay, rate-limit by tenant, and fall back across providers without redeploying.

); } function FeatureTile({ icon: Icon, title, body, }: { icon: React.ComponentType<{ className?: string }>; title: string; body: string; }) { return (
{title}

{body}

); }