blob: b933ffa5132054fc4032f9af9dac8284ff214b97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import React from 'react'
import TerminalWindow from '../components/not-found/TerminalWindow'
import './NotFound.sass'
import { useDocumentTitle } from '../util/hooks'
const NotFound = () => {
useDocumentTitle('Page Not Found - OpenDC')
return (
<div className="not-found-backdrop">
<TerminalWindow />
</div>
)
}
export default NotFound
|