import { Button } from '@automattic/components'; import { Icon, lock, currencyDollar, postDate } from '@wordpress/icons'; import { useTranslate } from 'i18n-calypso'; import CreditCardImg from 'calypso/assets/images/jetpack/credit-cards.png'; import { useDispatch } from 'calypso/state'; import { recordTracksEvent } from 'calypso/state/analytics/actions'; export default function EmptyState() { const translate = useTranslate(); const dispatch = useDispatch(); const navigateToCreateMethod = () => { dispatch( recordTracksEvent( 'calypso_partner_portal_license_list_empty_issue_license_click' ) ); }; return ( <>
Credit Cards
{ translate( 'World-class card security' ) }
{ translate( 'Stripe, our payment provider, holds PCI Service Provider Level 1 certification—the highest security standard in the industry. Rest easy knowing your card data is in good hands.' ) }
{ translate( 'Only pay for active licenses' ) }
{ translate( 'Jetpack Manage is free to use. Your running total is calculated daily based on how many licenses you have issued. Your card will be charged on the 1st of the following month.' ) }
{ translate( 'Flexible billing in your control' ) }
{ translate( "Our billing matches your monthly client payments, so you're not stuck with yearly fees. Cancel licenses anytime to cease billing immediately." ) }
); }