Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dashboard/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -42,6 +43,10 @@ const router = createBrowserRouter([
path: "/chat",
element: <ChatPage />,
},
{
path: "/settings",
element: <SettingsPage />,
},
{
path: "/trips",
element: <TripsPage />,
Expand Down
15 changes: 15 additions & 0 deletions dashboard/src/pages/settings/SettingsPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import Layout from "@/components/Layout";

function SettingsPage() {
return (
<>
<Layout activeTab="settings" headerTitle="Settings">
<div className="flex flex-col justify-start">
Coming soon or something ™
</div>
</Layout>
</>
);
}

export default SettingsPage;
Loading