Removed duplicated markdown pages, improved NotFound page

This commit is contained in:
2018-12-13 01:18:22 +11:00
parent 59fbb7fb2e
commit c8d17f6af9
7 changed files with 24 additions and 91 deletions
+5 -2
View File
@@ -1,4 +1,6 @@
import React from "react";
import { Header } from "semantic-ui-react";
import LinkButton from "../panels/link_button.jsx";
class NotFound extends React.Component {
constructor(props) {
@@ -7,8 +9,9 @@ class NotFound extends React.Component {
render() {
return (
<div>
<p>NotFound</p>
<div className="centeredPage">
<Header as="h1">Page Not Found</Header>
<LinkButton to="/">Return Home</LinkButton>
</div>
);
}