20 lines
428 B
TypeScript
20 lines
428 B
TypeScript
'use client'
|
|
|
|
import React from 'react'
|
|
|
|
import { Gutter } from './_components/Gutter/index.js'
|
|
import { VerticalPadding } from './_components/VerticalPadding/index.js'
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<main>
|
|
<VerticalPadding bottom="medium" top="none">
|
|
<Gutter>
|
|
<h1>404</h1>
|
|
<p>This page could not be found.</p>
|
|
</Gutter>
|
|
</VerticalPadding>
|
|
</main>
|
|
)
|
|
}
|