From 5fa36e2c2dc8b33c659e50558cfe6a87413fb03d Mon Sep 17 00:00:00 2001 From: Daniel Hansen Date: Wed, 7 Jan 2026 23:12:57 -0800 Subject: [PATCH 1/3] Add `SettingsPage` component with temporary contents --- dashboard/src/pages/settings/SettingsPage.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 dashboard/src/pages/settings/SettingsPage.tsx diff --git a/dashboard/src/pages/settings/SettingsPage.tsx b/dashboard/src/pages/settings/SettingsPage.tsx new file mode 100644 index 0000000..bb090e9 --- /dev/null +++ b/dashboard/src/pages/settings/SettingsPage.tsx @@ -0,0 +1,15 @@ +import Layout from "@/components/Layout"; + +function SettingsPage() { + return ( + <> + +
+ Coming soon or something ™ +
+
+ + ); +} + +export default SettingsPage; From 360d30f7dc5da0ef12b779ef52edb325a586379f Mon Sep 17 00:00:00 2001 From: Daniel Hansen Date: Wed, 7 Jan 2026 23:13:03 -0800 Subject: [PATCH 2/3] Add route for `SettingsPage` in the main router configuration --- dashboard/src/main.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dashboard/src/main.tsx b/dashboard/src/main.tsx index 583f634..187e1e1 100644 --- a/dashboard/src/main.tsx +++ b/dashboard/src/main.tsx @@ -13,6 +13,7 @@ import LoginPage from "@/pages/auth/LoginPage.tsx"; import QueryPage from "@/pages/query/QueryPage.tsx"; import WidgetsPage from "@/pages/widgets/WidgetsPage.tsx"; import ChatPage from "@/pages/chat/ChatPage.tsx"; +import SettingsPage from "./pages/settings/SettingsPage.tsx"; import VehiclesPage from "@/pages/vehicles/VehiclesPage.tsx"; import TripsPage from "@/pages/trips/TripsPage.tsx"; import TripDetailsPage from "@/pages/trips/TripDetailsPage.tsx"; @@ -42,6 +43,10 @@ const router = createBrowserRouter([ path: "/chat", element: , }, + { + path: "/settings", + element: , + }, { path: "/trips", element: , From ff46c5780ef2cc4d1e490402e69848af08b2475a Mon Sep 17 00:00:00 2001 From: Daniel Hansen <105574022+dchansen06@users.noreply.github.com> Date: Wed, 7 Jan 2026 23:18:44 -0800 Subject: [PATCH 3/3] Failure to read Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- dashboard/src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/main.tsx b/dashboard/src/main.tsx index 187e1e1..4c2d988 100644 --- a/dashboard/src/main.tsx +++ b/dashboard/src/main.tsx @@ -13,7 +13,7 @@ import LoginPage from "@/pages/auth/LoginPage.tsx"; import QueryPage from "@/pages/query/QueryPage.tsx"; import WidgetsPage from "@/pages/widgets/WidgetsPage.tsx"; import ChatPage from "@/pages/chat/ChatPage.tsx"; -import SettingsPage from "./pages/settings/SettingsPage.tsx"; +import SettingsPage from "@/pages/settings/SettingsPage.tsx"; import VehiclesPage from "@/pages/vehicles/VehiclesPage.tsx"; import TripsPage from "@/pages/trips/TripsPage.tsx"; import TripDetailsPage from "@/pages/trips/TripDetailsPage.tsx";