1 import { c } from 'ttag';
3 import { FeatureCode } from '@proton/features';
4 import { PLANS, PLAN_NAMES } from '@proton/payments';
5 import { BRAND_NAME, CYCLE } from '@proton/shared/lib/constants';
7 import Layout from '../../components/duoPlan/Layout';
8 import type { OfferConfig } from '../../interface';
11 ID: 'duo-plan-2024-yearly',
12 featureCode: FeatureCode.OfferDuoPlanYearly2024,
13 autoPopUp: 'one-time',
16 ref: 'upsell_mail-modal-duo_launch_1y',
17 dealName: PLAN_NAMES[PLANS.DUO],
22 popular: 1, // to get solid CTA
28 hideDealPriceInfos: true,
29 hideDiscountBubble: true,
35 getCTAContent: () => c('duoplan2024: Action').t`Get ${BRAND_NAME} Duo`,
38 } satisfies OfferConfig;
40 export default config;