import { useI18n } from '../i18n'
/** Shadow-mode honesty badges — shown wherever a C1/C2 result appears. */
export function ShadowBadges() {
const { t } = useI18n()
return (
{t('shadow.badge')}
{t('shadow.advisory')}
{t('shadow.noChange')}
{t('shadow.synthetic')}
)
}
/** A single "Authoritative" marker for the deterministic policy result. */
export function AuthoritativeBadge() {
const { t } = useI18n()
return {t('authoritative.badge')}
}
export function ShadowFootnote() {
const { t } = useI18n()
return {t('shadow.notEvidence')}
}