import { BRACKT_GRADIENT_START, BRACKT_GRADIENT_END } from "~/lib/brand"; /** * Renders hidden SVG gradient definitions that can be referenced by ID * anywhere in the document via stroke="url(#brackt-primary-gradient)" etc. * * Mount this once near the root of the app. */ export function BracktGradients() { return ( {/* Green (top) → Cyan (bottom) — the main Brackt brand gradient. userSpaceOnUse + 0→24 matches the Lucide icon viewBox so horizontal strokes (zero bounding-box height) don't produce a degenerate gradient. */} ); }