diff --git a/frontend/src/common/components/NavBarMain.tsx b/frontend/src/common/components/NavBarMain.tsx index 579746a9f..1f2cee7cc 100644 --- a/frontend/src/common/components/NavBarMain.tsx +++ b/frontend/src/common/components/NavBarMain.tsx @@ -100,6 +100,11 @@ const NavbarMain = () => { display: { xs: "none", md: "flex", justifyContent: "right" }, }} > + + + TrainSpace + + {isSignedIn(user) ? ( diff --git a/frontend/src/pages/trainspace.tsx b/frontend/src/pages/trainspace.tsx new file mode 100644 index 000000000..a64c0e7a3 --- /dev/null +++ b/frontend/src/pages/trainspace.tsx @@ -0,0 +1,13 @@ +import NavbarMain from "@/common/components/NavBarMain"; +import React from "react"; + +const TrainSpace = () => { + return ( +
+ +

Welcome to TrainSpace

+
+ ); + }; + + export default TrainSpace; \ No newline at end of file