import { __, sprintf } from '@wordpress/i18n';
import React from 'react';
/**
* BackupPromotion component definition.
*
* @return {React.Component} BackupPromotion component.
*/
export default function BackupPromotion() {
return (
{ __(
'VaultPress Backup is the most proven WordPress backup plugin with 270 million site backups over the last ten years.',
'jetpack-backup-pkg'
) }
-
{ sprintf(
// translators: %s is the amount of storage.
__( 'Automated real-time backups with %s of storage', 'jetpack-backup-pkg' ),
'10 GB'
) }
- { __( 'Easy one-click restores from desktop or mobile', 'jetpack-backup-pkg' ) }
- { __( 'Complete list of all site changes', 'jetpack-backup-pkg' ) }
- { __( 'Global server infrastructure', 'jetpack-backup-pkg' ) }
- { __( 'Best-in-class support', 'jetpack-backup-pkg' ) }
- { __( 'Easy to use; no developer required', 'jetpack-backup-pkg' ) }
-
{ __( 'Backups of all WooCommerce customer and order data', 'jetpack-backup-pkg' ) }
);
}