diff --git a/dashboard/src/states/Dashboard/pages/Info/Info.jsx b/dashboard/src/states/Dashboard/pages/Info/Info.jsx
new file mode 100644
index 0000000..4ac3bda
--- /dev/null
+++ b/dashboard/src/states/Dashboard/pages/Info/Info.jsx
@@ -0,0 +1,39 @@
+import {Alert, 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 (
+ <>
+ Project settings
+
+
+
+ Default values
+
+
+
+
+ It is currently not possible to change the default values. This feature will be available in future
+ updates.
+
+
+
+
+
+ License key
+
+ Example: 123A-4313-43121-017#
+
+
+
+
+
+
+ >
+ )
+}
\ No newline at end of file
diff --git a/dashboard/src/states/Dashboard/pages/Info/index.js b/dashboard/src/states/Dashboard/pages/Info/index.js
new file mode 100644
index 0000000..bbfb44f
--- /dev/null
+++ b/dashboard/src/states/Dashboard/pages/Info/index.js
@@ -0,0 +1 @@
+export {Info as default} from "./Info.jsx";
\ No newline at end of file