mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Begin implementing new website
This commit is contained in:
9
www/src/pages/404.js
Normal file
9
www/src/pages/404.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
|
||||
const NotFoundPage = () =>
|
||||
<div>
|
||||
<h1>NOT FOUND</h1>
|
||||
<p>You just hit a route that doesn't exist... the sadness.</p>
|
||||
</div>;
|
||||
|
||||
export default NotFoundPage;
|
||||
12
www/src/pages/index.js
Normal file
12
www/src/pages/index.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import Link from 'gatsby-link';
|
||||
|
||||
const IndexPage = () =>
|
||||
<div>
|
||||
<h1>Hi people</h1>
|
||||
<p>Welcome to your new Gatsby site.</p>
|
||||
<p>Now go build something great.</p>
|
||||
<Link to="/page-2/">Go to page 2</Link>
|
||||
</div>;
|
||||
|
||||
export default IndexPage;
|
||||
Reference in New Issue
Block a user