diff --git a/web/src/App.tsx b/web/src/App.tsx index 231c2f285..377d22493 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -4,7 +4,6 @@ import { useState } from "react"; import Wrapper from "@/components/Wrapper"; import Sidebar from "@/components/Sidebar"; import Header from "@/components/Header"; -import Dashboard from "@/pages/Dashboard"; import Live from "@/pages/Live"; import History from "@/pages/History"; import Export from "@/pages/Export"; @@ -32,8 +31,7 @@ function App() {
- } /> - } /> + } /> } /> } /> } /> diff --git a/web/src/components/Header.tsx b/web/src/components/Header.tsx index eb5df6f25..c84e6afd6 100644 --- a/web/src/components/Header.tsx +++ b/web/src/components/Header.tsx @@ -66,26 +66,21 @@ function HeaderNavigation() { const navbarLinks = [ { id: 1, - title: "Dashboard", + title: "Live", url: "/", }, { id: 2, - title: "Live", - url: "/live", - }, - { - id: 3, title: "History", url: "/history", }, { - id: 4, + id: 3, title: "Export", url: "/export", }, { - id: 5, + id: 4, title: "UI Playground", url: "/playground", dev: true,