diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 3da83d2b..d5847132 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -30,7 +30,7 @@ import { AuthenticationProvider } from "@/hooks/useAuth"; import GDPRBanner from "./components/gdpr/gdprbanner"; import DownloadsPage from "./components/pages/Download"; -import MuJoCoTestPage from "./components/pages/MuJoCoTest"; +import PlaygroundPage from "./components/pages/MujocoPlayground"; import OrderCancel from "./components/pages/OrderCancel"; import OrderSuccess from "./components/pages/OrderSuccess"; import Orders from "./components/pages/Orders"; @@ -57,7 +57,7 @@ const App = () => { {/* } /> */} - } /> + } /> } /> } /> diff --git a/frontend/src/components/listing/mujoco/index.tsx b/frontend/src/components/listing/mujoco/index.tsx index 61107a69..71cc6498 100644 --- a/frontend/src/components/listing/mujoco/index.tsx +++ b/frontend/src/components/listing/mujoco/index.tsx @@ -220,6 +220,12 @@ const MUJOCO = ({ url }: { url: string }) => { return (
+
+ 🚧 + This page is under construction. Some features may not be fully + functional. + 🚧 +
{showNotification && (
For the best user experience, visit with a desktop. diff --git a/frontend/src/components/nav/Navbar.tsx b/frontend/src/components/nav/Navbar.tsx index 377f09c8..dce84be7 100644 --- a/frontend/src/components/nav/Navbar.tsx +++ b/frontend/src/components/nav/Navbar.tsx @@ -75,7 +75,7 @@ const Navbar = () => { }, { name: "Playground", - path: "/mujoco-test", + path: "/playground", icon: , isExternal: false, }, diff --git a/frontend/src/components/pages/MuJoCoTest.tsx b/frontend/src/components/pages/MujocoPlayground.tsx similarity index 71% rename from frontend/src/components/pages/MuJoCoTest.tsx rename to frontend/src/components/pages/MujocoPlayground.tsx index 805afd08..3db4aaff 100644 --- a/frontend/src/components/pages/MuJoCoTest.tsx +++ b/frontend/src/components/pages/MujocoPlayground.tsx @@ -2,7 +2,7 @@ import React from "react"; import MUJOCO from "../listing/mujoco"; -const MuJoCoTestPage: React.FC = () => { +const PlaygroundPage: React.FC = () => { return (
@@ -10,4 +10,4 @@ const MuJoCoTestPage: React.FC = () => { ); }; -export default MuJoCoTestPage; +export default PlaygroundPage;