Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { localizeUrl } from '@automattic/i18n-utils';
import { Button } from '@wordpress/components';
import { translate } from 'i18n-calypso';
export default function HostingIntro() {
const onLearnMoreClick = () => {
window.open( localizeUrl( 'https://wordpress.com/hosting' ), '_blank' );
};
return (
<div className="l-block-col-2">
<div className="l-block-content">
<h2>{ translate( 'The best WordPress hosting on the planet' ) }</h2>
<p>
{ translate(
'Whatever you’re building, WordPress.com has everything you need: ' +
'unmetered bandwidth, unmatched speed, unstoppable security, ' +
'and intuitive multi-site management.'
) }
</p>
<p>{ translate( 'Bring your WordPress site to WordPress.com and get it all.' ) }</p>
<Button variant="primary" onClick={ onLearnMoreClick } className="button-action">
{ translate( 'Learn more' ) }
</Button>
</div>
<div className="l-block-content img-container"></div>
</div>
);
}