blob: b344e923f5197a9d38088c59c012d0c332dc80a0 (
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;
|