updated mobile page

This commit is contained in:
legop3
2026-01-08 20:32:47 -05:00
parent 008cf96c7e
commit d3f2f15370
5 changed files with 51 additions and 41 deletions
+6 -4
View File
@@ -1,6 +1,6 @@
import { useCallback, useEffect, useMemo, useState } from 'react';
import TelemetryPanel from './components/TelemetryPanel.jsx';
import ControlSummary from './components/ControlSummary.jsx';
import ControlSummary, { RoverRosterPanel } from './components/ControlSummary.jsx';
import AlertFeed from './components/AlertFeed.jsx';
import MobileControls, {
MobileLandscapeAuxColumn,
@@ -125,8 +125,9 @@ function MobileFeatureTabs({
function MobilePortraitLayout({ onOpenHelpOverlay }) {
return (
<div className="flex flex-col gap-0.5">
<DriverVideoPanel layoutFormat='mobile'/>
<DriverVideoPanel layoutFormat="mobile-portrait" />
<MobileControls />
<RoverRosterPanel />
{/* <ControlSummary /> */}
<MobileFeatureTabs
layout="mobile-portrait"
@@ -143,8 +144,9 @@ function MobileLandscapeLayout({ onOpenHelpOverlay }) {
<section className="grid min-h-screen grid-cols-[minmax(0,0.7fr)_minmax(0,2.1fr)_minmax(0,0.7fr)] gap-0.5">
<MobileLandscapeAuxColumn />
<div>
<DriverVideoPanel layoutFormat='mobile'/>
<TelemetryPanel />
<DriverVideoPanel layoutFormat="mobile-landscape" />
<RoverRosterPanel />
{/* <TelemetryPanel /> */}
</div>
<MobileLandscapeControlColumn />
</section>