summaryrefslogtreecommitdiff
path: root/frontend/src/pages/NotFound.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/NotFound.js')
-rw-r--r--frontend/src/pages/NotFound.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/src/pages/NotFound.js b/frontend/src/pages/NotFound.js
new file mode 100644
index 00000000..b344e923
--- /dev/null
+++ b/frontend/src/pages/NotFound.js
@@ -0,0 +1,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;