'use client' import { useI18n } from '@/lib/i18n' export default function Signup() { const { t } = useI18n() return (

{t('signup.title')}

{t('signup.subtitle')}

{ e.currentTarget.style.background = '#006ba3' }} onMouseLeave={(e) => { e.currentTarget.style.background = '#0088cc' }} > {t('signup.joinTelegram')}
) }