mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 17:25:59 +02:00
16 lines
320 B
TypeScript
16 lines
320 B
TypeScript
import React, { Fragment } from "react"
|
|
|
|
import { SEO } from "../components/SEO"
|
|
|
|
function NotFoundPage() {
|
|
return (
|
|
<Fragment>
|
|
<SEO title="404: Not found" />
|
|
<h1>NOT FOUND</h1>
|
|
<p>You just hit a route that doesn't exist... the sadness.</p>
|
|
</Fragment>
|
|
)
|
|
}
|
|
|
|
export default NotFoundPage
|