import { useTranslation, Trans } from 'react-i18next' import { isSplitTestEnabled } from '@/utils/splitTestUtils' import { AI_STANDALONE_PLAN_CODE } from '../../data/add-on-codes' function FreePlan() { const { t } = useTranslation() return ( <> , ]} /> : {t('upgrade_now')} {isSplitTestEnabled('ai-add-on') && ( {t('buy_overleaf_assist')} )} ) } export default FreePlan