// Thin fixed banner shown only when NEXT_PUBLIC_ENV_LABEL is set (e.g. staging). // Production never sets the var, so it renders nothing there. export function EnvBanner() { const label = process.env.NEXT_PUBLIC_ENV_LABEL; if (!label) return null; return (