Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { localize } from 'i18n-calypso';
import googleMyBusinessImage from 'calypso/assets/images/illustrations/google-my-business-feature.svg';
import PurchaseDetail from 'calypso/components/purchase-detail';
export default localize( ( { selectedSite, translate } ) => {
return (
<div className="product-purchase-features-list__item">
<PurchaseDetail
icon={ <img alt="" src={ googleMyBusinessImage } /> }
title={ translate( 'Google Business Profile' ) }
description={ translate(
'Create a Google business listing, connect with customers, and discover how customers find you on Google by connecting to a Google Business Profile location.'
) }
buttonText={ translate( 'Connect to Google Business Profile' ) }
href={ '/google-my-business/' + selectedSite.slug }
/>
</div>
);
} );