blob: 3b8ca5375f28511d0948326a2f5bfda55f82aa68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import * as React from "react"
import { Link, type HeadFC, type PageProps } from "gatsby"
import logo from "../images/logo.svg";
import PageLayout, { generateHeader } from "../layout/page";
import styled from "styled-components";
const CenterImage = styled.img`
display: block;
margin: 0 auto;
margin-top: 50px;
width: 70%;
height: auto;
max-width: 600px;
`
const NotFound: React.FC<PageProps> = () => {
return (
<PageLayout header="404: Not Found" subheader="The page you requested could not be found">
<p>Try going back to the <Link to="/">home page</Link>.</p>
</PageLayout>
)
}
export default NotFound
export const Head: HeadFC = generateHeader("Not Found", "Page could not be found.");
|