blob: 959cceec088e8bb99b49d3cad40f21a0a5ba0f62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import React from 'react'
import DocumentTitle from 'react-document-title'
import TerminalWindow from '../components/not-found/TerminalWindow'
import './NotFound.css'
const NotFound = () => (
<DocumentTitle title="Page Not Found - OpenDC">
<div className="not-found-backdrop">
<TerminalWindow/>
</div>
</DocumentTitle>
)
export default NotFound
|