File size: 1,000 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>
	);
}