From b46806ada17d04227767de9fb3a98ea381788260 Mon Sep 17 00:00:00 2001 From: James Pace Date: Tue, 18 Aug 2026 21:06:14 -0400 Subject: [PATCH] General cleanup and refactoring. --- src/App.tsx | 11 +- src/Autonomy.tsx | 90 ------------- src/Diagnostics.tsx | 66 ---------- ...DiagnosticView.tsx => DiagnosticsCard.tsx} | 119 ++++++++++++------ src/Home.tsx | 87 ++++++++++++- src/Video.tsx | 41 ++++++ src/components/AppNav.tsx | 9 +- 7 files changed, 210 insertions(+), 213 deletions(-) delete mode 100644 src/Autonomy.tsx delete mode 100644 src/Diagnostics.tsx rename src/{components/DiagnosticView.tsx => DiagnosticsCard.tsx} (52%) create mode 100644 src/Video.tsx diff --git a/src/App.tsx b/src/App.tsx index ac53612..4e847ab 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -12,9 +12,8 @@ import { useState } from "react"; import { createBrowserRouter, RouterProvider } from "react-router-dom"; import { Provider as JotaiProvider } from "jotai"; import { Home } from "./Home.tsx"; -import { Autonomy } from "./Autonomy.tsx"; +import { Video } from "./Video.tsx"; import { Version } from "./Version.tsx"; -import { Diagnostics } from "./Diagnostics.tsx"; import "./App.css"; function App() { @@ -41,12 +40,8 @@ const router = createBrowserRouter([ element: , }, { - path: "/autonomy", - element: , - }, - { - path: "/diagnostics", - element: , + path: "/video", + element: