summaryrefslogtreecommitdiff
path: root/src/pages/NotFound.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/NotFound.js')
-rw-r--r--src/pages/NotFound.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pages/NotFound.js b/src/pages/NotFound.js
new file mode 100644
index 00000000..51141c3e
--- /dev/null
+++ b/src/pages/NotFound.js
@@ -0,0 +1,11 @@
+import React from 'react';
+import TerminalWindow from "../components/not-found/TerminalWindow";
+import './NotFound.css';
+
+const NotFound = () => (
+ <div className="not-found-backdrop">
+ <TerminalWindow/>
+ </div>
+);
+
+export default NotFound;