diff --git a/src/pages/NotFound/NotFound.jsx b/src/pages/NotFound/NotFound.jsx
new file mode 100644
index 0000000..99bc23e
--- /dev/null
+++ b/src/pages/NotFound/NotFound.jsx
@@ -0,0 +1,23 @@
+import Navigation from "@components/Navigation";
+import {Box, Button, Typography} from "@mui/material";
+import {useNavigate} from "react-router-dom";
+
+export const NotFound = () => {
+ const navigate = useNavigate();
+
+ return (
+ <>
+
+
+
+ 404
+ Seite nicht gefunden
+
+
+
+
+ >
+ )
+}
\ No newline at end of file