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 (

{ translate( 'The best WordPress hosting on the planet' ) }

{ translate( 'Whatever you’re building, WordPress.com has everything you need: ' + 'unmetered bandwidth, unmatched speed, unstoppable security, ' + 'and intuitive multi-site management.' ) }

{ translate( 'Bring your WordPress site to WordPress.com and get it all.' ) }

); }