diff --git a/components/Content/Visuals/Bento.tsx b/components/Content/Visuals/Bento.tsx index ded41293..02d0c5b9 100644 --- a/components/Content/Visuals/Bento.tsx +++ b/components/Content/Visuals/Bento.tsx @@ -326,16 +326,6 @@ const mobileItems = [ className: "md:col-span-2", icon: , }, - - { - title: "", - description: ( - null - ), - header: , - className: "md:col-span-1", - // icon: , - }, ]; diff --git a/components/Gameplay/mission-list.tsx b/components/Gameplay/mission-list.tsx index 26e77702..7360bc0d 100644 --- a/components/Gameplay/mission-list.tsx +++ b/components/Gameplay/mission-list.tsx @@ -3,59 +3,44 @@ import Link from "next/link"; import { Button } from "../ui/button"; export function MissionList() { + const missions = [ + { name: "Pick your home planet", completed: true }, + { name: "Build your first rover", completed: false }, + { name: "Collect your first resources", completed: false }, + { name: "Build your first structure", completed: false }, + { name: "Make your first classification", completed: false }, + ]; + return ( -<> + <> To-Do List Manage your daily tasks -
-
- - - -

Finish the design mockups

-
-
-
-
- - - -

Attend the team meeting

-
-
-
-
- - - -

Buy groceries

+ {missions.map((mission, index) => ( +
+
+ + + +

+ {mission.name} +

+
-
-
-
- - - -

Call mom

-
-
-
-
- - - -

Clean the house

-
-
- - {/* - - */} - - ) + ))} + + + ); } function LinkIcon(props) { diff --git a/components/Modals/rover-interface.tsx b/components/Modals/rover-interface.tsx index 5e84dfa5..d38a2a68 100644 --- a/components/Modals/rover-interface.tsx +++ b/components/Modals/rover-interface.tsx @@ -466,6 +466,122 @@ export function RoverInterfaceDark() { ); }; +export function RoverInterfaceDarkMobile() { + return ( +
+
+
+
Planet Name
+
+
ROVER #1 (Allow user to customise name)
+
+
+
MISSION DAY
+
SOL #3039
+
Time: 2:36 pm
+
+
+
SUNRISE
+
6:37 am
+
SUNSET
+
6:35 pm
+
+
+
+
+
+
PRESSURE
+
+ + 827 Pa +
+
+
+
OXYGEN
+
+ + 0.24% +
+
+
+
+
TEMPERATURE
+
+ + -29.16 °C +
+
+
+
ATMOSPHERE
+
Moderate sunny
+
+
+
ROVER STATUS
+
+
+
CELL
+
65.25
+
+
+
GAS PRESS
+
12.48
+
+
+
+
MODE
+
DRV
+
+
+
+
SPEED
+
118 km/hour
+
+
+
+
CAMERA CONTROL PANEL
+
+
+
+
+ + + +
+
+ + + +
+
+
+