/* * Sandbox is hatched as well as coloured, so it survives a colourblind reader * and a glance. It sits in the same place on every screen: issuing against the * wrong environment should feel wrong before you click. */ const ENV = process.env.NEXT_PUBLIC_ADMIN_ENV === "sandbox" ? "sandbox" : "production"; export function EnvBadge() { const sandbox = ENV === "sandbox"; return ( {sandbox ? "Sandbox" : "Production"} ); }