import { useTranslations } from 'next-intl' import { cn } from '@/lib/utils' /** * Discreet source-code footer line (WL-06 slice A6). * * AGPL-3.0 section 13 compliance: the running service must offer its source * to everyone who interacts with it over the network, so this renders on BOTH * default and branded hosts; never gate it on a brand. It links the canonical * repo. Dual-use component: works as a server component (privacy/dpa) and * inside client pages (login); next-intl supports useTranslations in both. */ const SOURCE_REPO_URL = 'https://github.com/erp-mafia/gnubok' export function SourceCodeFooter({ className }: { className?: string }) { const t = useTranslations('common') return (
) }