diff --git a/skyvern-frontend/src/router.tsx b/skyvern-frontend/src/router.tsx
index edc930f8..e1fc4c52 100644
--- a/skyvern-frontend/src/router.tsx
+++ b/skyvern-frontend/src/router.tsx
@@ -1,5 +1,6 @@
import { Navigate, Outlet, createBrowserRouter } from "react-router-dom";
import { BrowserSession } from "@/routes/browserSessions/BrowserSession";
+import { BrowserSessions } from "@/routes/browserSessions/BrowserSessions";
import { PageLayout } from "./components/PageLayout";
import { DiscoverPage } from "./routes/discover/DiscoverPage";
import { HistoryPage } from "./routes/history/HistoryPage";
@@ -41,6 +42,10 @@ const router = createBrowserRouter([
),
children: [
+ {
+ path: "browser-sessions",
+ element: ,
+ },
{
index: true,
element: ,
diff --git a/skyvern-frontend/src/routes/root/SideNav.tsx b/skyvern-frontend/src/routes/root/SideNav.tsx
index 6c2c49f2..04460982 100644
--- a/skyvern-frontend/src/routes/root/SideNav.tsx
+++ b/skyvern-frontend/src/routes/root/SideNav.tsx
@@ -5,6 +5,7 @@ import { cn } from "@/util/utils";
import {
CounterClockwiseClockIcon,
GearIcon,
+ GlobeIcon,
LightningBoltIcon,
} from "@radix-ui/react-icons";
import { KeyIcon } from "@/components/icons/KeyIcon.tsx";
@@ -36,6 +37,11 @@ function SideNav() {
to: "/history",
icon: ,
},
+ {
+ label: "Browsers",
+ to: "/browser-sessions",
+ icon: ,
+ },
]}
/>