import { useI18n, tk } from '../lib/i18n'; function Logo({ className }: { className: string }) { return ( ); } export function MobileBranding() { const { t } = useI18n(); return (

{t('auth.productName')}

{t('auth.slogan')}

); } export default function AuthBranding() { const { t } = useI18n(); return (

{t('auth.productName')}

{t('auth.slogan')}

{['auth.feature1', 'auth.feature2', 'auth.feature3'].map((key) => (
{t(tk(key))}
))}
); }