1 import { c } from 'ttag';
3 import { FeatureCode } from '@proton/features';
4 import { PLANS, PLAN_NAMES } from '@proton/payments';
5 import { COUPON_CODES, CYCLE } from '@proton/shared/lib/constants';
7 import { getVPNFeatures } from '../../helpers/offerCopies';
8 import type { OfferConfig } from '../../interface';
9 import Layout from './Layout';
11 const config: OfferConfig = {
12 ID: 'black-friday-2024-vpn-free',
13 autoPopUp: 'one-time',
14 featureCode: FeatureCode.OfferBlackFriday2024VPNFree,
21 // translator: translate "Black Friday" only if it's problematic in your language (offensive/unknown/etc.)
22 getCTAContent: () => c('BF2024: Action (top button in header)').t`Black Friday`,
24 hideDealPriceInfos: true,
27 ref: 'bf_24_vpn_free-modal-vpn_1',
28 dealName: PLAN_NAMES[PLANS.VPN2024],
35 couponCode: COUPON_CODES.BLACK_FRIDAY_2024_MONTH,
36 features: getVPNFeatures,
42 export default config;