diff --git a/src/states/Dashboard/pages/Info/Info.jsx b/src/states/Dashboard/pages/Info/Info.jsx
new file mode 100644
index 0000000..0b8cbd5
--- /dev/null
+++ b/src/states/Dashboard/pages/Info/Info.jsx
@@ -0,0 +1,33 @@
+import {Stack, TextField, Typography} from "@mui/material";
+import {useContext} from "react";
+import {ProjectContext} from "@/states/Dashboard/contexts/Project";
+import Settings from "@/states/Dashboard/pages/Info/components/Settings";
+
+export const Info = () => {
+ const {currentProject} = useContext(ProjectContext);
+
+ return (
+ <>
+ Einstellungen
+
+
+
+ Standardwerte
+
+
+
+
+
+ Lizenzschlüssel
+
+ Beispiel: 123A-4313-43121-017#
+
+
+
+
+
+
+ >
+ )
+}
\ No newline at end of file