blob: 4c9b8ca305b529ca06bfec638a85f9167fe63b55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import React from "react";
import Entry from "../components/entry";
import { Styled } from "theme-ui";
export default ({ data, location }) => {
return (
<Entry data={data} location={location} title={"404 Not Found"}>
<Styled.h2>404 Not Found</Styled.h2>
<Styled.p>The page you are looking for was not found.</Styled.p>
</Entry>
);
};
|