File size: 819 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 31 32 33 |
import { Button } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';
import { FunctionComponent } from 'react';
import JetpackLogo from 'calypso/components/jetpack-logo';
import Main from 'calypso/components/main';
import './style.scss';
interface Props {
authUrl: string;
}
const Connect: FunctionComponent< Props > = ( { authUrl } ) => {
const translate = useTranslate();
return (
<Main className="connect">
<div className="connect__content">
<JetpackLogo full monochrome={ false } size={ 72 } />
<p>
{ translate(
'Welcome to Jetpack. Authorize with your WordPress.com credentials to get started.'
) }
</p>
<Button primary href={ authUrl }>
{ translate( 'Authorize Jetpack' ) }
</Button>
</div>
</Main>
);
};
export default Connect;
|