diff --git a/web/src/components/main-sidebar.tsx b/web/src/components/main-sidebar.tsx
index 256bdd0..34f115b 100644
--- a/web/src/components/main-sidebar.tsx
+++ b/web/src/components/main-sidebar.tsx
@@ -8,7 +8,7 @@ import {
SidebarMenuItem,
SidebarSeparator,
} from "@/components/ui/sidebar.tsx";
-import { Link } from "@tanstack/react-router";
+import { Link, useRouterState } from "@tanstack/react-router";
import { LayoutPanelLeft, ScrollText } from "lucide-react";
function MainSidebar() {
@@ -23,28 +23,39 @@ function MainSidebar() {
-
-
-
-
-
- Workspaces
-
-
-
-
-
-
-
- Templates
-
-
-
-
+
);
}
+function MainSidebarMenu() {
+ const router = useRouterState();
+
+ return (
+
+
+
+
+
+ Workspaces
+
+
+
+
+
+
+
+ Templates
+
+
+
+
+ );
+}
+
export { MainSidebar };