import { __ } from '@wordpress/i18n';
import React from 'react';
/**
* BackupPromotion component definition.
*
* @returns {React.Component} BackupPromotion component.
*/
export default function BackupPromotion() {
return (
{ __(
'Save every change and get back online quickly with one‑click restores.',
'jetpack-backup-pkg'
) }
- { __( 'Automated real-time backups', 'jetpack-backup-pkg' ) }
- { __( 'Easy one-click restores', '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' ) }
);
}