Begin implementing new website

This commit is contained in:
Niklas von Hertzen
2017-12-09 17:47:25 +08:00
parent b239937e00
commit 13e80cc635
18 changed files with 13017 additions and 1 deletions

9
www/src/pages/404.js Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
const NotFoundPage = () =>
<div>
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
</div>;
export default NotFoundPage;

12
www/src/pages/index.js Normal file
View 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;