"use client"; import { useHealth, useConfig } from "@/lib/hooks"; export function StatusCard() { const { data: health } = useHealth(); const { data: config } = useConfig(); const online = health?.status === "ok"; const model = config?.model || "—"; return (
{model}
{online ? "Online" : "Offline"}
); }