summaryrefslogtreecommitdiff
path: root/frontend/src/pages/NotFound.js
blob: f72c7d017ec5fe3e7fd4b5de400112ec80a94cd5 (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