File size: 767 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { Card } from '@automattic/components';
import { PureComponent } from 'react';
import noSitesIllustration from 'calypso/assets/images/illustrations/illustration-nosites.svg';

export default class extends PureComponent {
	static displayName = 'DevWelcome';

	render() {
		return (
			<Card className="devdocs__welcome">
				<h1 className="devdocs__welcome-title">Welcome to WP Calypso!</h1>
				<img alt="" className="devdocs__welcome-illustration" src={ noSitesIllustration } />
				<p>
					This is your local running copy of Calypso. If you want a quick start,{ ' ' }
					<a href="/devdocs/docs/guide/index.md">check the Guide</a>. To access the documentation at
					any time, use the small badge in the bottom right corner.
				</p>
			</Card>
		);
	}
}