diff --git a/src/frontend/src/pages/GlobalVariablesPage/index.tsx b/src/frontend/src/pages/GlobalVariablesPage/index.tsx
new file mode 100644
index 000000000..19cb2ce27
--- /dev/null
+++ b/src/frontend/src/pages/GlobalVariablesPage/index.tsx
@@ -0,0 +1,23 @@
+import IconComponent from "../../components/genericIconComponent";
+import { Button } from "../../components/ui/button";
+
+import PageLayout from "../../components/pageLayout";
+
+export default function GlobalVariablesPage() {
+ return (
+
+
+ >
+ }
+ >
+ Page
+
+ );
+}
diff --git a/src/frontend/src/routes.tsx b/src/frontend/src/routes.tsx
index b48e5147d..239a7d870 100644
--- a/src/frontend/src/routes.tsx
+++ b/src/frontend/src/routes.tsx
@@ -17,6 +17,7 @@ import ViewPage from "./pages/ViewPage";
import DeleteAccountPage from "./pages/deleteAccountPage";
import LoginPage from "./pages/loginPage";
import SignUp from "./pages/signUpPage";
+import GlobalVariablesPage from "./pages/GlobalVariablesPage";
const Router = () => {
const navigate = useNavigate();
@@ -126,6 +127,14 @@ const Router = () => {
}
/>
+
+
+
+ }
+ />