diff --git a/src/app/page.tsx b/src/app/page.tsx
index 3b2c646..10154e0 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,6 +1,7 @@
'use client';
import Layout from '@/components/Layout';
+import { direction } from 'html2canvas/dist/types/css/property-descriptors/direction';
const names = ["Default", "Arm Operation", "Debug", "Auxiliary", "Science"];
const colors = ['#0070f3', '#28a745', '#dc3545', '#ffc107', '#17a2b8'];
@@ -83,7 +84,12 @@ const layouts = [
second: {
direction: 'row',
first: 'webRTCClient:4',
- second: 'nodeStatusPanel:5',
+ second: {
+ direction: 'column',
+ first: 'nodeStatusPanel:5',
+ second: 'rosMonitor:6',
+ splitPercentage: 70
+ },
splitPercentage: 70,
},
splitPercentage: 30,
@@ -219,4 +225,4 @@ const HomePage = () => {
);
};
-export default HomePage;
\ No newline at end of file
+export default HomePage;
diff --git a/src/components/panels/MotorStatusPanel.tsx b/src/components/panels/MotorStatusPanel.tsx
index e45261a..87f582c 100644
--- a/src/components/panels/MotorStatusPanel.tsx
+++ b/src/components/panels/MotorStatusPanel.tsx
@@ -179,6 +179,7 @@ const MotorStatusPanel: React.FC = () => {