diff --git a/dashboard/src/main.tsx b/dashboard/src/main.tsx index 583f634..4c2d988 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: , 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;