summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/pages/NotFound.js
blob: 72be7342baf60e80d95f78397d96a8f287643e38 (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.sass'

const NotFound = () => (
    <DocumentTitle title="Page Not Found - OpenDC">
        <div className="not-found-backdrop">
            <TerminalWindow />
        </div>
    </DocumentTitle>
)

export default NotFound