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