blob: 409ffa0e863ff53287d8617750d48cbb735456ed (
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 style from './NotFound.module.scss'
import { useDocumentTitle } from '../util/hooks'
const NotFound = () => {
useDocumentTitle('Page Not Found - OpenDC')
return (
<div className={style['not-found-backdrop']}>
<TerminalWindow />
</div>
)
}
export default NotFound
|