diff --git a/experiences/asteroids/controls/lib/index.tsx b/experiences/asteroids/controls/lib/index.tsx index b37307a..e2a53f7 100644 --- a/experiences/asteroids/controls/lib/index.tsx +++ b/experiences/asteroids/controls/lib/index.tsx @@ -15,28 +15,15 @@ import AsteroidWatch from "./AsteroidWatch"; import Learn from "./Learn"; import Info from "./Info"; import { - bottomTitleStyle, - controlsContainerStyle, dynamicUiwrapperStyle, - fixedFooterStyle, - footerInnerStyle, - footerStyle, - headerStyle, overlayMenuWrapperStyle, overlayStyle, - pageWidthStyle, - pageWrapperStyle, selectedTabStyle, tabPanelStyle, tabsStyle, tabStyle, - titleStyle, wrapperStyle, } from "./style"; -import { BroadcastOnHome } from "@mui/icons-material"; -import { Icon, Link } from "@mui/material"; -import { AppsRounded } from "@material-ui/icons"; -import { ThemeProvider } from "@emotion/react"; interface TabPanelProps { children?: React.ReactNode; @@ -116,92 +103,53 @@ const ControlsComponent = (): JSX.Element => { ); } - // TODO: Remove before prod - const theme = createTheme({ - palette: { - primary: { - main: "#001E4C", - light: "#092b87", - dark: "#011221", - }, - }, - }); - - // TODO: Remove footron container stuff - return ( -
-
-
-

Eyes on Asteroids

- - - -
-
- - {/* Start normal controls */} - - {/* Settings overlay */} - {menuOpen ? ( - - - - - - - - ) : null} - - - - - - - - - - - - - - - - - {menuOpen ? : } - - - Watch - - - Fly - - - Learn - - - Info - - + + {/* Settings overlay */} + {menuOpen ? ( + + + + - {/* End normal controls */} - -
-
- -
-
- -

More Experiences

-
-
- -
-
-
+ + + ) : null} + + + + + + + + + + + + + + + + + {menuOpen ? : } + + + Watch + + + Fly + + + Learn + + + Info + + + ); };