mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
16 lines
321 B
TypeScript
16 lines
321 B
TypeScript
import React, { Fragment } from "react"
|
|
|
|
import { SEO } from "../components/SEO"
|
|
import { FourZeroFour } from "../components/FourZeroFour"
|
|
|
|
function NotFoundPage() {
|
|
return (
|
|
<Fragment>
|
|
<SEO title="404: Not found" />
|
|
<FourZeroFour title="NOT FOUND" />
|
|
</Fragment>
|
|
)
|
|
}
|
|
|
|
export default NotFoundPage
|